mirror of
https://github.com/HbmMods/Hbm-s-Nuclear-Tech-GIT.git
synced 2026-01-25 10:32:49 +00:00
15 lines
383 B
Java
15 lines
383 B
Java
package com.hbm.blocks;
|
|
|
|
import cpw.mods.fml.client.registry.RenderingRegistry;
|
|
import net.minecraft.world.IBlockAccess;
|
|
|
|
public interface IBlockSideRotation {
|
|
|
|
public int getRotationFromSide(IBlockAccess world, int x, int y, int z, int side);
|
|
|
|
public static int renderID = RenderingRegistry.getNextAvailableRenderId();
|
|
public static int getRenderType() {
|
|
return renderID;
|
|
}
|
|
}
|