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

◆ ReadFromContext()

override bool ActionFishingNew::ReadFromContext ( ParamsReadContext ctx,
out ActionReciveData action_recive_data )
inlineprotected

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

246 {
247 if (!action_recive_data)
248 {
249 action_recive_data = new FishingActionReceiveData;
250 }
251
252 super.ReadFromContext(ctx, action_recive_data);
253
254 FishingActionReceiveData receiveDataFishing;
255 if (Class.CastTo(receiveDataFishing,action_recive_data))
256 {
257 if (!ctx.Read(receiveDataFishing.m_IsSurfaceSea))
258 return false;
259
260 return true;
261 }
262
263 return false;
264 }
bool m_IsSurfaceSea
Определения ActionFishingNew.c:3
proto bool Read(void value_in)

Перекрестные ссылки Class::CastTo(), FishingActionReceiveData::m_IsSurfaceSea и Serializer::Read().