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

◆ ReadFromContext()

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

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

279 {
280 if (!action_recive_data)
281 {
282 action_recive_data = new AttachMagazineActionReciveData;
283 }
284
285 super.ReadFromContext(ctx, action_recive_data);
286
287 InventoryLocation il = new InventoryLocation;
288 if (!il.ReadFromContext(ctx))
289 return false;
290
291 AttachMagazineActionReciveData recive_data_am = AttachMagazineActionReciveData.Cast(action_recive_data);
292 recive_data_am.m_ilOldMagazine = il;
293
294 return true;
295 }
ref InventoryLocation m_ilOldMagazine
Определения FirearmActionAttachMagazine.c:3
bool ReadFromContext(ParamsReadContext ctx)
Определения InventoryLocation.c:296

Перекрестные ссылки AttachMagazineActionReciveData::m_ilOldMagazine и InventoryLocation::ReadFromContext().