buildcraft/api/buildcraft/api/gates/IGateExpansion.java

31 lines
805 B
Java
Raw Normal View History

2014-02-15 09:21:40 +01:00
/**
* Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team
* http://www.mod-buildcraft.com
2014-02-15 09:21:40 +01:00
*
* The BuildCraft API is distributed under the terms of the MIT License.
* Please check the contents of the license, which should be located
* as "LICENSE.API" in the BuildCraft source code distribution.
*/
package buildcraft.api.gates;
2014-01-12 23:05:36 +01:00
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.tileentity.TileEntity;
2014-01-12 23:05:36 +01:00
import net.minecraft.util.IIcon;
public interface IGateExpansion {
String getUniqueIdentifier();
String getDisplayName();
GateExpansionController makeController(TileEntity pipeTile);
2014-01-12 23:05:36 +01:00
void registerBlockOverlay(IIconRegister iconRegister);
2014-01-12 23:05:36 +01:00
void registerItemOverlay(IIconRegister iconRegister);
2014-01-12 23:05:36 +01:00
IIcon getOverlayBlock();
2014-01-12 23:05:36 +01:00
IIcon getOverlayItem();
}