set svn:ignore, added beginning of KnightsTourBoard.java

git-svn-id: svn://anubis/gvsu@80 45c1a28c-8058-47b2-ae61-ca45b979098e
This commit is contained in:
josh 2008-03-26 22:40:59 +00:00
parent 6ef5da7b81
commit 51dc17a7d4

View File

@ -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];
}
}