DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ ReadFromContext()

override bool ActionWorldCraft::ReadFromContext ( ParamsReadContext ctx,
out ActionReciveData action_recive_data )
inlineprivate

См. определение в файле ActionWorldCraft.c строка 197

198 {
199 if (!action_recive_data)
200 {
201 action_recive_data = new WorldCraftActionReciveData;
202 }
203
204 super.ReadFromContext(ctx, action_recive_data);
205
206 int recipeID;
207 if (!ctx.Read(recipeID))
208 return false;
209
210 WorldCraftActionReciveData recive_data_wc = WorldCraftActionReciveData.Cast(action_recive_data);
211 recive_data_wc.m_RecipeID = recipeID;
212
213 return true;
214 }
proto bool Read(void value_in)

Перекрестные ссылки WorldCraftActionReciveData::m_RecipeID и Serializer::Read().