Package me.daddychurchill.CityWorld.Rooms.Populators

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

package me.daddychurchill.CityWorld.Rooms.Populators;

import me.daddychurchill.CityWorld.Plugins.RoomProvider;
import me.daddychurchill.CityWorld.Rooms.StorageEmptyChestsRoom;
import me.daddychurchill.CityWorld.Rooms.StorageFilledChestsRoom;

public class WarehouseWithChests extends RoomProvider {

  public WarehouseWithChests() {
    super();

    roomTypes.add(new StorageFilledChestsRoom());
    roomTypes.add(new StorageEmptyChestsRoom());
  }

}
TOP

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

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.