changed project structure
This commit is contained in:
17
src/de/javagames/Main.java
Normal file
17
src/de/javagames/Main.java
Normal 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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user