Examples of StorageDoubleRowRoom


Examples of me.daddychurchill.CityWorld.Rooms.StorageDoubleRowRoom

  public WarehouseWithRandom() {
    super();

    roomTypes.add(new StorageDoubleShelvesRoom());
    roomTypes.add(new StorageDoubleRowRoom(Material.BOOKSHELF));
    roomTypes.add(new StorageDoubleRowRoom(Material.PISTON_BASE));
    roomTypes.add(new StorageDoubleRowRoom(Material.WORKBENCH));
    roomTypes.add(new StorageFilledChestsRoom());
    // shelves (some with chests)
    // tables
    // workbench
  }
View Full Code Here

Examples of me.daddychurchill.CityWorld.Rooms.StorageDoubleRowRoom

  public WarehouseWithBooks() {
    super();

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

Examples of me.daddychurchill.CityWorld.Rooms.StorageDoubleRowRoom

public class WarehouseWithBoxes extends RoomProvider {

  public WarehouseWithBoxes() {
    super();

    roomTypes.add(new StorageDoubleRowRoom(Material.PISTON_BASE));
  }
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.