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

◆ ReadFromContext()

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

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

206 {
207 if (!action_recive_data)
208 {
209 action_recive_data = new WorldCraftActionReciveData;
210 }
211
212 super.ReadFromContext(ctx, action_recive_data);
213
214 int recipeID;
215 if (!ctx.Read(recipeID))
216 return false;
217
218 WorldCraftActionReciveData recive_data_wc = WorldCraftActionReciveData.Cast(action_recive_data);
219 recive_data_wc.m_RecipeID = recipeID;
220
221 return true;
222 }
proto bool Read(void value_in)

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