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

◆ ReadFromContext()

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

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

59 {
60 if (!action_recive_data)
61 {
62 action_recive_data = new AttachMagazineActionReciveData;
63 }
64
65 super.ReadFromContext(ctx, action_recive_data);
66
67 InventoryLocation il = new InventoryLocation;
68 if (!il.ReadFromContext(ctx))
69 return false;
70
71 AttachMagazineActionReciveData recive_data_am = AttachMagazineActionReciveData.Cast(action_recive_data);
72 recive_data_am.m_ilOldMagazine = il;
73
74 return true;
75 }
ref InventoryLocation m_ilOldMagazine
Определения FirearmActionAttachMagazine.c:3
bool ReadFromContext(ParamsReadContext ctx)
Определения InventoryLocation.c:296

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