Dayz Explorer 1.29.162510
Loading...
Searching...
No Matches
triggercarrierbase.c
Go to the documentation of this file.
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}