111 {
112 if ( !super.OnStoreLoad(ctx, version) )
113 return false;
114
116
117 bool b_is_active = false;
118 if ( !ctx.
Read( b_is_active ) )
119 b_is_active = false;
120
121 bool b_is_in_progress = false;
122 if (version < 139)
123 {
124 if ( !ctx.
Read( b_is_in_progress ) )
125 b_is_in_progress = false;
126 }
127
128 bool b_is_deployed = false;
129 if ( !ctx.
Read( b_is_deployed ) )
130 b_is_deployed = false;
131
132 if (version >= 139)
133 {
134 int enviroMask;
135 if (ctx.
Read(enviroMask))
137 }
138
139 if (b_is_active)
140 {
143 }
144
146
148 return true;
149 }
void InitCatchingComponent()
void SetDeployed(bool newState)
proto bool Read(void value_in)