Package me.daddychurchill.CityWorld.Rooms.Populators

Source Code of me.daddychurchill.CityWorld.Rooms.Populators.WarehouseWithStacks

package me.daddychurchill.CityWorld.Rooms.Populators;

import org.bukkit.Material;

import me.daddychurchill.CityWorld.Plugins.RoomProvider;
import me.daddychurchill.CityWorld.Rooms.StorageStacksRoom;

public class WarehouseWithStacks extends RoomProvider {

  public WarehouseWithStacks() {
    super();

    roomTypes.add(new StorageStacksRoom(Material.BOOKSHELF));
    roomTypes.add(new StorageStacksRoom(Material.PISTON_BASE));
    roomTypes.add(new StorageStacksRoom(Material.WORKBENCH));
  }

}
TOP

Related Classes of me.daddychurchill.CityWorld.Rooms.Populators.WarehouseWithStacks

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.