backup
This commit is contained in:
30
projekt/Game.~ava
Normal file
30
projekt/Game.~ava
Normal file
@@ -0,0 +1,30 @@
|
||||
import java.util.Random;
|
||||
import java.util.Scanner;
|
||||
|
||||
public class Game {
|
||||
public static Helper helper;
|
||||
public static Menu menu;
|
||||
public static Scanner input;
|
||||
public static void main(String args[]) {
|
||||
|
||||
|
||||
|
||||
boolean end = false;
|
||||
|
||||
init();
|
||||
|
||||
while (!end) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public static void init() {
|
||||
helper = new Helper();
|
||||
input = new Scanner(System.in);
|
||||
|
||||
menu = new Menu(this);
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user