Exemplo n.º 1
0
 public TestProducer()
 {
     Width    = 3;
     Height   = 3;
     Output   = new InfiniteDirectOutput(Item.Wood);
     Entrance = new BuildingEntrance(this, (1, 2), (1, 3), PathType.Driveway);
     Type     = BuildingType.TestProducer;
 }
Exemplo n.º 2
0
 public TrainStation(Map map)
 {
     _map     = map;
     Width    = 2;
     Height   = 4;
     Input    = new InfiniteDirectInput();
     Output   = new InfiniteDirectOutput(Item.Wood);
     Type     = BuildingType.TrainStation;
     Entrance = new BuildingEntrance(this, (2, 0), (2, 3), PathType.Rail);
 }