From 51dc17a7d451f343669be8ae43c087de25468e76 Mon Sep 17 00:00:00 2001 From: josh Date: Wed, 26 Mar 2008 22:40:59 +0000 Subject: [PATCH] set svn:ignore, added beginning of KnightsTourBoard.java git-svn-id: svn://anubis/gvsu@80 45c1a28c-8058-47b2-ae61-ca45b979098e --- cs621/proj4/KnightsTourBoard.java | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 cs621/proj4/KnightsTourBoard.java 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]; + } +}