Ejemplo n.º 1
0
 bool IsTarget(Day15UnitType otherUnit) => otherUnit != Type;
Ejemplo n.º 2
0
 public Day15Unit(Day15UnitType type, Point initialPosition, int attackPower)
 {
     Type             = type;
     Position         = initialPosition;
     this.attackPower = attackPower;
 }