1
0
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:
SquidDev
2017-05-07 01:53:37 +01:00
parent 5a60818c99
commit 2e901a063d
32 changed files with 138 additions and 138 deletions

View File

@@ -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 );
}

View File

@@ -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 );
}