changed project structure

This commit is contained in:
2025-02-20 12:17:18 +01:00
parent b117d476fd
commit 906e95d949
8 changed files with 115 additions and 15 deletions

View File

@@ -0,0 +1,17 @@
package de.javagames;
//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or
// click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
public class Main {
public static void main(String[] args) {
//Erzeugen einer Spielekonsole
Spielekonsole alpha = new Spielekonsole();
Spieler spieler = new Spieler();
//alpha.hello();
//spieler.machBenutzerEingabe();
//alpha.goodbye();
alpha.spielnr();
}
}