Exemplo n.º 1
0
 public static float FoodDesire(Actor self, Actor other)
 {
     return self.CanEat(other) ? 6f : 0f;
 }
Exemplo n.º 2
0
 public static float FearDesire(Actor self, Actor other)
 {
     return other.CanEat(self) ? 6f : 0f;
 }