mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-11-18 22:25:12 +00:00
Remove accessibility modifiers from all enums and interfaces
This commit is contained in:
@@ -17,12 +17,12 @@ import net.minecraft.util.math.Vec3d;
|
||||
|
||||
public interface ITurtleTile extends IComputerTile, IDirectionalTile
|
||||
{
|
||||
public Colour getColour();
|
||||
public ResourceLocation getOverlay();
|
||||
public ITurtleUpgrade getUpgrade( TurtleSide side );
|
||||
public ITurtleAccess getAccess();
|
||||
Colour getColour();
|
||||
ResourceLocation getOverlay();
|
||||
ITurtleUpgrade getUpgrade( TurtleSide side );
|
||||
ITurtleAccess getAccess();
|
||||
|
||||
public Vec3d getRenderOffset( float f );
|
||||
public float getRenderYaw( float f );
|
||||
public float getToolRenderAngle( TurtleSide side, float f );
|
||||
Vec3d getRenderOffset( float f );
|
||||
float getRenderYaw( float f );
|
||||
float getToolRenderAngle( TurtleSide side, float f );
|
||||
}
|
||||
|
||||
@@ -15,8 +15,8 @@ import net.minecraft.util.ResourceLocation;
|
||||
|
||||
public interface ITurtleItem extends IComputerItem
|
||||
{
|
||||
public ITurtleUpgrade getUpgrade( ItemStack stack, TurtleSide side );
|
||||
public int getFuelLevel( ItemStack stack );
|
||||
public Colour getColour( ItemStack stack );
|
||||
public ResourceLocation getOverlay( ItemStack stack );
|
||||
ITurtleUpgrade getUpgrade( ItemStack stack, TurtleSide side );
|
||||
int getFuelLevel( ItemStack stack );
|
||||
Colour getColour( ItemStack stack );
|
||||
ResourceLocation getOverlay( ItemStack stack );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user