Package me.daddychurchill.CityWorld.Rooms.Populators

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

package me.daddychurchill.CityWorld.Rooms.Populators;

import me.daddychurchill.CityWorld.Plugins.RoomProvider;
import me.daddychurchill.CityWorld.Rooms.EmptyRoom;
import me.daddychurchill.CityWorld.Rooms.RegisterRoom;
import me.daddychurchill.CityWorld.Rooms.StorageDoubleShelvesRoom;

public class StoreWithNothing extends RoomProvider {

  public StoreWithNothing() {
    super();

    roomTypes.add(new StorageDoubleShelvesRoom());
    roomTypes.add(new StorageDoubleShelvesRoom());
    roomTypes.add(new StorageDoubleShelvesRoom());
    roomTypes.add(new StorageDoubleShelvesRoom());
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new EmptyRoom());
    roomTypes.add(new RegisterRoom());
  }

}
TOP

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

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.