Files
racing-game/src/Main.java

33 lines
597 B
Java

public class Main {
public static void main(String[] args) throws InterruptedException {
// Map m = Map.fromChars(new Character[][] {
// {'3', '#', '2'},
// {'#', ' ', 'S'},
// {'9', '#', 'F'},
// });
Game game = new Game.Builder()
.defaultMap()
.setPlayers(3)
.build();
Thread t = new Thread(() -> {
int i = 0;
while (i++ < 10)
{
try
{
Thread.sleep(5000);
}
catch (InterruptedException e)
{
e.printStackTrace();
}
System.out.println(game.togglePause() ? "stop" : "fini" );
}
});
t.start();
game.run();
}
}