1 package de.aikiit.game.kaiser;
2
3 /**
4 * This is the main class to start the game.
5 * You can launch it directly or start via the shaded JAR.
6 */
7 //@SpringBootApplication
8 public class GameKaiserJavaApplication {
9
10 /**
11 * Start the actual game directly.
12 * @param args no parameters required at the moment.
13 */
14 public static void main(String[] args) {
15 new KaiserGame().run();
16 }
17
18 }