コード例 #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
ファイル: Events.cs プロジェクト: mygithome002/CypherCore
 ThreatManagerEvent(UnitEventTypes pType, HostileReference pHostileReference)
     : base(pType, pHostileReference)
 {
     iThreatContainer = null;
 }
コード例 #6
0
ファイル: Events.cs プロジェクト: mygithome002/CypherCore
 ThreatManagerEvent(UnitEventTypes pType)
     : base(pType)
 {
     iThreatContainer = null;
 }
コード例 #7
0
ファイル: Events.cs プロジェクト: zgbjmy2009/CypherCore
 void SetEventType(UnitEventTypes pType)
 {
     iType = pType;
 }