Package me.daddychurchill.CityWorld.Rooms

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


  public WarehouseWithBooks() {
    super();

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

public class WarehouseWithBoxes extends RoomProvider {

  public WarehouseWithBoxes() {
    super();

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

TOP

Related Classes of me.daddychurchill.CityWorld.Rooms.StorageDoubleRowRoom

Copyright © 2018 www.massapicom. 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.