Package colonies.src.buildings

Source Code of colonies.src.buildings.TileEntityEnchanterChest

package colonies.src.buildings;

import colonies.src.ClientProxy;
import colonies.src.citizens.EntityCitizen;
import colonies.src.citizens.EntityEnchanter;
import net.minecraft.inventory.IInventory;
import net.minecraft.world.World;

public class TileEntityEnchanterChest extends TileEntityColoniesChest {

  public TileEntityEnchanterChest() {
    super();
  }

  @Override
    public String getInvName(){
        return "container.enchanter";
    }

  @Override
  public String getTextureFile(){
    return ClientProxy.ENCHANTERCHEST_PNG;
  }

    @Override
    public EntityCitizen createNewWorker(World theWorld){
      return new EntityEnchanter(theWorld);
    }

}
TOP

Related Classes of colonies.src.buildings.TileEntityEnchanterChest

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.