20 lines
485 B
Java
20 lines
485 B
Java
package minigame;
|
|
|
|
import java.io.BufferedReader;
|
|
import java.io.IOException;
|
|
import java.io.InputStreamReader;
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) throws IOException {
|
|
|
|
BufferedReader ter = new BufferedReader(new InputStreamReader(System.in));
|
|
// Race.readLocations("minigame/locations2.txt");
|
|
GameControls game1 = new GameControls();
|
|
try {GameControls.startInto(game1, ter);}
|
|
catch (Exception e) {e.printStackTrace();}
|
|
|
|
}
|
|
|
|
}
|