Esempio n. 1
0
        /*
         *  TellIfShotOK - Returns whether a shot can be made
         *  at a coordinate on the player's board
         */

        public bool TellIfShotOK(Coordinate coord)
        {
            return(board.IsShotOK(coord));
        }