コード例 #1
0
 public bool checkIfAgressiveTowards(Creature creature)
 {
     if (faction == null)
     {
         return(true);
     }
     else
     {
         return(faction.checkIfAgressive(creature.faction));
     }
 }