Ejemplo n.º 1
0
        public SeekTarget(Vector2Int moveCoords, LevelBoard.Directions direction, Piece target)
        {
            this.Direction = direction;

            this.Target = target;

            this.TargetCoords = target.Coords;

            this.TargetCharacteristics = new Piece.Characteristics(target.Characterization.ToString());

            this.MoveCoords = moveCoords;
        }
Ejemplo n.º 2
0
 public Consume(Piece.Characteristics targetCharacterization) : base(targetCharacterization)
 {
 }
Ejemplo n.º 3
0
 protected SeekTarget(Piece.Characteristics Characteristics) : base()
 {
     this.TargetCharacteristics = Characteristics;
 }