Example #1
0
 public ThreatRefStatusChangeEvent(UnitEventTypes pType)
     : base(pType)
 {
     iHostileReference = null;
 }
Example #2
0
 public ThreatRefStatusChangeEvent(UnitEventTypes pType, HostileReference pHostileReference, bool pValue)
     : base(pType)
 {
     iHostileReference = pHostileReference;
     iBValue           = pValue;
 }
Example #3
0
 void setType(UnitEventTypes pType)
 {
     iType = pType;
 }
Example #4
0
 public UnitBaseEvent(UnitEventTypes pType)
 {
     iType = pType;
 }
Example #5
0
 ThreatManagerEvent(UnitEventTypes pType, HostileReference pHostileReference)
     : base(pType, pHostileReference)
 {
     iThreatContainer = null;
 }
Example #6
0
 ThreatManagerEvent(UnitEventTypes pType)
     : base(pType)
 {
     iThreatContainer = null;
 }
Example #7
0
 void SetEventType(UnitEventTypes pType)
 {
     iType = pType;
 }