示例#1
0
        public void GetAdjacentPositionsTest()
        {
            Player_Accessor target = new Player_Accessor(); // TODO: Initialize to an appropriate value

            int[,] piece = target._Pieces['j'];
            List <Point> points = target.GetAdjacentPositions(piece, new Point(5, 5));

            PrintPoints(points);
        }
示例#2
0
 public void GetAdjacentPositionsTest()
 {
     Player_Accessor target = new Player_Accessor(); // TODO: Initialize to an appropriate value
     int[,] piece = target._Pieces['j'];
     List<Point> points = target.GetAdjacentPositions(piece, new Point(5, 5));
     PrintPoints(points);
 }