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

◆ OnRPC() [2/6]

void PluginBase::OnRPC ( ParamsReadContext ctx)
inlineprotected

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

41 {
42 int itemCount;
43
44 if (!ctx.Read(itemCount))
45 return;
46
47 for (int i = 0; i < itemCount; i++)
48 {
49 InventoryLocation il = new InventoryLocation();
50 if (!il.ReadFromContext(ctx) )
51 return;
52
53 m_CorrectILs.Insert(il);
54 }
55 }
bool ReadFromContext(ParamsReadContext ctx)
Определения InventoryLocation.c:310
ref array< ref InventoryLocation > m_CorrectILs
Определения PluginInventoryRepair.c:10
proto bool Read(void value_in)

Перекрестные ссылки m_CorrectILs, Serializer::Read() и InventoryLocation::ReadFromContext().