This commit is contained in:
Mykola Fesenko
2025-07-29 08:08:23 +02:00
commit 899a05907b
355 changed files with 11002 additions and 0 deletions

30
projekt/Game.~ava Normal file
View 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);
}
}