diff --git a/cs621/proj4/KnightsTourBoard.java b/cs621/proj4/KnightsTourBoard.java new file mode 100644 index 0000000..c130280 --- /dev/null +++ b/cs621/proj4/KnightsTourBoard.java @@ -0,0 +1,14 @@ + +import java.util.Vector; + +public class KnightsTourBoard +{ + protected int m_width; + protected int m_height; + protected int[][] m_board; + + KnightsTourBoard(int width, int height) + { + m_board = new int[width][height]; + } +}