DayZ 1.29
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
TriggerCarrierBase.c
См. документацию.
2{
3 int m_TriggerIndex = -1;
4
5 protected int m_ParentObjectNetIdLow = -1;
6 protected int m_ParentObjectNetIdHigh = -1;
7
9
10 void SetIndex(int index)
11 {
12 m_TriggerIndex = index;
13 SetSynchDirty();
14 }
15
16 void SetParent(Object parent)
17 {
18 int low, high;
19 parent.GetNetworkID(low, high);
20
23
24 m_ParentObject = parent;
25
26 SetSynchDirty();
27 }
28}
Определения ObjectTyped.c:2
Определения ScriptedEntity.c:13
void SetIndex(int index)
Определения TriggerCarrierBase.c:10
void SetParent(Object parent)
Определения TriggerCarrierBase.c:16