diff --git a/src/Main.java b/src/Main.java index feff397..870cae7 100644 --- a/src/Main.java +++ b/src/Main.java @@ -1,9 +1,22 @@ - -public class Main { - - public static void main(String[] args) { - System.out.println("Hello Bro"); - - } - -} +import backend.Board; +import backend.Move; +import backend.Piece; +import backend.PieceType; +import windowInterface.MyInterface; + + +public class Main { + + + public static void main(String[] args) { + // testing : + Board testBoard = new Board(8, 8); + testBoard.populateBoard(); + System.out.println(testBoard.toString()); + + // launches graphical interface : + MyInterface mjf = new MyInterface(); + mjf.setVisible(true); + } + +}