コード例 #1
0
ファイル: Entity.cs プロジェクト: RamiAhmed/R2R_Test1
 public bool GetIsAlly(Entity target)
 {
     return (this.GetIsUnit() && target.GetIsUnit()) || (this.GetIsEnemy() && target.GetIsEnemy());
 }