Made the project artifact friendly

Can now be build using IntelliJ artifacts
This commit is contained in:
2021-02-25 09:52:12 +01:00
parent 8fc1867d9e
commit 81c17b2cc1
14 changed files with 61 additions and 246 deletions

7
Client/src/Launcher.java Normal file
View File

@@ -0,0 +1,7 @@
import game.TicTacToe_Client;
public class Launcher {
public static void main(String[] args) {
TicTacToe_Client.main(args);
}
}