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:
parent
6ef5da7b81
commit
51dc17a7d4
14
cs621/proj4/KnightsTourBoard.java
Normal file
14
cs621/proj4/KnightsTourBoard.java
Normal 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];
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user