Debuging ist nervig :C

This commit is contained in:
Lars Nießen 2023-08-04 21:45:47 +02:00
parent 2b938b68f9
commit 86e3d42a95
5 changed files with 5 additions and 6 deletions

View File

@ -1,8 +1,7 @@
package Field;
import java.util.ArrayList;
import Player;
import Field.Player;
public class Field {
private int dice_number;

View File

@ -1,4 +1,4 @@
package Field.Player;
package Field;
public class Player{
private String name;

View File

@ -1,7 +1,7 @@
package Manager;
import Field.Field;
import Player.Player;
import Field.Player;
import AttackInformations.AttackInformations;
import java.util.ArrayList;

View File

@ -1,5 +1,5 @@
import Manager.GameManager;
import Player.Player;
import Field.Player;
public class Test {
public static void main(String[] args){
@ -8,7 +8,6 @@ public class Test {
gm.add_player("Lars");
gm.add_player("Nils");
gm.add_player("Felix");
for(Player current:gm.get_players()){
System.out.println(current);
}

View File

@ -1,4 +1,5 @@
import Manager.GameManager;
import Field.Player;
public class Test {
public static void main(String[] args){