fix java shit

This commit is contained in:
Felix Steghofer
2022-12-04 01:45:18 +01:00
parent 3db4f94e6a
commit c3f4512037
38 changed files with 5 additions and 0 deletions

Binary file not shown.

View File

@@ -0,0 +1,24 @@
package reversi.main;
import reversi.controller.ReversiController;
/**
* Starts a Reversi Game with the gui.
*/
public final class ReversiGame {
private ReversiController controller;
private ReversiGame() {
this.controller = new ReversiController();
}
/**
*
* @param args unused...
*/
public static void main(final String...args) {
ReversiGame reversiGame = new ReversiGame();
reversiGame.controller.showView();
}
}