Debuging ist nervig :C
This commit is contained in:
parent
2b938b68f9
commit
86e3d42a95
@ -1,8 +1,7 @@
|
|||||||
package Field;
|
package Field;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
import Field.Player;
|
||||||
import Player;
|
|
||||||
|
|
||||||
public class Field {
|
public class Field {
|
||||||
private int dice_number;
|
private int dice_number;
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
package Field.Player;
|
package Field;
|
||||||
|
|
||||||
public class Player{
|
public class Player{
|
||||||
private String name;
|
private String name;
|
@ -1,7 +1,7 @@
|
|||||||
package Manager;
|
package Manager;
|
||||||
|
|
||||||
import Field.Field;
|
import Field.Field;
|
||||||
import Player.Player;
|
import Field.Player;
|
||||||
import AttackInformations.AttackInformations;
|
import AttackInformations.AttackInformations;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
import Manager.GameManager;
|
import Manager.GameManager;
|
||||||
import Player.Player;
|
import Field.Player;
|
||||||
|
|
||||||
public class Test {
|
public class Test {
|
||||||
public static void main(String[] args){
|
public static void main(String[] args){
|
||||||
@ -8,7 +8,6 @@ public class Test {
|
|||||||
gm.add_player("Lars");
|
gm.add_player("Lars");
|
||||||
gm.add_player("Nils");
|
gm.add_player("Nils");
|
||||||
gm.add_player("Felix");
|
gm.add_player("Felix");
|
||||||
|
|
||||||
for(Player current:gm.get_players()){
|
for(Player current:gm.get_players()){
|
||||||
System.out.println(current);
|
System.out.println(current);
|
||||||
}
|
}
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
import Manager.GameManager;
|
import Manager.GameManager;
|
||||||
|
import Field.Player;
|
||||||
|
|
||||||
public class Test {
|
public class Test {
|
||||||
public static void main(String[] args){
|
public static void main(String[] args){
|
||||||
|
Loading…
Reference in New Issue
Block a user