Examples of EmptyRoom


Examples of me.daddychurchill.CityWorld.Rooms.EmptyRoom

public class EmptyWithNothing extends RoomProvider {

  public EmptyWithNothing() {
    super();
   
    roomTypes.add(new EmptyRoom());
  }
View Full Code Here

Examples of me.daddychurchill.CityWorld.Rooms.EmptyRoom

   
    roomTypes.add(new StorageDoubleShelvesRoom());
    roomTypes.add(new StorageDoubleShelvesRoom());
    roomTypes.add(new StorageSingleRowRoom(Material.BOOKSHELF));
    roomTypes.add(new StorageSingleRowRoom(Material.BOOKSHELF));
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new RegisterRoom());
  }
View Full Code Here

Examples of me.daddychurchill.CityWorld.Rooms.EmptyRoom

public class WarehouseWithNothing extends RoomProvider  {

  public WarehouseWithNothing() {
    super();

    roomTypes.add(new EmptyRoom());
    roomTypes.add(new StorageDoubleShelvesRoom());
  }
View Full Code Here

Examples of me.daddychurchill.CityWorld.Rooms.EmptyRoom

public class HouseLivingRooms extends RoomProvider {

  public HouseLivingRooms() {
    super();

    roomTypes.add(new EmptyRoom());

  }
View Full Code Here

Examples of me.daddychurchill.CityWorld.Rooms.EmptyRoom

public class BusinessWithManufacturing extends RoomProvider {

  public BusinessWithManufacturing() {
    super();

    roomTypes.add(new EmptyRoom());

    // laboratory
    // machine room
    // manufacturing
    // technology.. etc.
View Full Code Here

Examples of me.daddychurchill.CityWorld.Rooms.EmptyRoom

  public StoreWithRegisters() {
    super();

    roomTypes.add(new StorageSingleRowRoom(Material.BOOKSHELF));
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new RegisterRoom());
    roomTypes.add(new RegisterRoom());
  }
View Full Code Here

Examples of me.daddychurchill.CityWorld.Rooms.EmptyRoom

  public OfficeWithLounges() {
    super();

//    roomTypes.add(new DebugRoom());
   
    roomTypes.add(new EmptyRoom());

    roomTypes.add(new LoungeCouchRoom());
    roomTypes.add(new LoungeTableRoom());
    roomTypes.add(new LoungeTVRoom());
    roomTypes.add(new LoungeQuadRoom());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.