예제 #1
0
파일: Player.cs 프로젝트: sethfengli/flare
        public int  TakeAnAttack(int x, int y)
        {
            var position = new Coordinate(x, y);

            return(PlayBoard.BoardCellAttacked(position));
        }
예제 #2
0
파일: Player.cs 프로젝트: sethfengli/flare
 public int TakeAnAttack(Coordinate position)
 {
     return(PlayBoard.BoardCellAttacked(position));
 }