Debuging ist nervig :C
This commit is contained in:
parent
2b938b68f9
commit
86e3d42a95
@ -1,8 +1,7 @@
|
||||
package Field;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
import Player;
|
||||
import Field.Player;
|
||||
|
||||
public class Field {
|
||||
private int dice_number;
|
||||
|
@ -1,4 +1,4 @@
|
||||
package Field.Player;
|
||||
package Field;
|
||||
|
||||
public class Player{
|
||||
private String name;
|
@ -1,7 +1,7 @@
|
||||
package Manager;
|
||||
|
||||
import Field.Field;
|
||||
import Player.Player;
|
||||
import Field.Player;
|
||||
import AttackInformations.AttackInformations;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -1,4 +1,5 @@
|
||||
import Manager.GameManager;
|
||||
import Field.Player;
|
||||
|
||||
public class Test {
|
||||
public static void main(String[] args){
|
||||
|
Loading…
Reference in New Issue
Block a user