Created
May 23, 2015 00:51
-
-
Save StillManic/1ca20f8b530367c7ed7a to your computer and use it in GitHub Desktop.
IMultiBlockStructure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public interface IMultiBlockStructure { | |
public boolean isStructureFormed(int id, TileEntity tileEntity); | |
public boolean checkStructure(int id, World world, int x, int y, int z, ForgeDirection direction, MultiBlockStructure structure); | |
public void registerStructure(); | |
public MultiBlockStructure getStructure(int id); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment