diff --git a/Map_World.java b/Map_World.java index 2006fb0..31a7707 100644 --- a/Map_World.java +++ b/Map_World.java @@ -34,7 +34,7 @@ public class Map_World extends GeneralMap * * nextProvinces = new int[]; * - * Province = new Province(,,,"",nextProvinces); + * Province = new Province(,,,,,"",nextProvinces); * addObject(,,); * * Zwei Provinzen sind bereits als Beispiel erstellt. @@ -43,12 +43,12 @@ public class Map_World extends GeneralMap neighbours = new int[1]; neighbours[0] = 2; - Province Mongolei = new Province(1,1,1,"Mongolei",neighbours); + Province Mongolei = new Province(1,1,1000,100,1,"Mongolei",neighbours); addObject(Mongolei,1000,100); neighbours = new int[1]; neighbours[0] = 1; - Province China = new Province(2,1,2,"China",neighbours); + Province China = new Province(2,1,1000,350,2,"China",neighbours); addObject(China,1000,350); } }