Adding Pieces
This commit is contained in:
parent
f11e275b40
commit
f944e610e7
|
|
@ -1,9 +1,22 @@
|
||||||
|
import backend.Board;
|
||||||
|
import backend.Move;
|
||||||
|
import backend.Piece;
|
||||||
|
import backend.PieceType;
|
||||||
|
import windowInterface.MyInterface;
|
||||||
|
|
||||||
|
|
||||||
public class Main {
|
public class Main {
|
||||||
|
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
System.out.println("Hello Bro");
|
// testing :
|
||||||
|
Board testBoard = new Board(8, 8);
|
||||||
|
testBoard.populateBoard();
|
||||||
|
System.out.println(testBoard.toString());
|
||||||
|
|
||||||
|
// launches graphical interface :
|
||||||
|
MyInterface mjf = new MyInterface();
|
||||||
|
mjf.setVisible(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue