Beispiel #1
0
 public Game(User user)
 {
     User            = user;
     Statement       = GameStatement.Wilderness;
     CurrentBuilding = new CurrentBuilding();
     Map             = new Map(Json.GetZone(0));
 }
Beispiel #2
0
 public Game(User user, CurrentBuilding currentBuilding, Map map)
 {
     User            = user;
     CurrentBuilding = currentBuilding;
     Map             = map;
 }