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

◆ ReadFromContext()

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

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

271 {
272 if (!action_recive_data)
273 {
274 action_recive_data = new AttachMagazineActionReciveData;
275 }
276
277 super.ReadFromContext(ctx, action_recive_data);
278
279 InventoryLocation il = new InventoryLocation;
280 if (!il.ReadFromContext(ctx))
281 return false;
282
283 AttachMagazineActionReciveData recive_data_am = AttachMagazineActionReciveData.Cast(action_recive_data);
284 recive_data_am.m_ilOldMagazine = il;
285
286 return true;
287 }
ref InventoryLocation m_ilOldMagazine
Определения FirearmActionAttachMagazine.c:3
bool ReadFromContext(ParamsReadContext ctx)
Определения InventoryLocation.c:296

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