15 lines
246 B
Java
15 lines
246 B
Java
|
|
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];
|
|
}
|
|
}
|