| 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 |
1
1. main : removed call to de/aikiit/game/kaiser/KaiserGame::run → NO_COVERAGE |
new KaiserGame().run(); |
| 16 | } | |
| 17 | ||
| 18 | } | |
Mutations | ||
| 15 |
1.1 |