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