aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/client')
-rw-r--r--src/main/java/gregtech/client/GTGUIClientConfig.java (renamed from src/main/java/gregtech/client/GT_GUI_ClientConfig.java)4
-rw-r--r--src/main/java/gregtech/client/GTGuiFactory.java (renamed from src/main/java/gregtech/client/GT_GuiFactory.java)4
-rw-r--r--src/main/java/gregtech/client/GTSoundLoop.java (renamed from src/main/java/gregtech/client/GT_SoundLoop.java)6
-rw-r--r--src/main/java/gregtech/client/GTTooltipHandler.java (renamed from src/main/java/gregtech/client/GT_TooltipHandler.java)2
4 files changed, 8 insertions, 8 deletions
diff --git a/src/main/java/gregtech/client/GT_GUI_ClientConfig.java b/src/main/java/gregtech/client/GTGUIClientConfig.java
index dfb4b2800c..e210f6f25f 100644
--- a/src/main/java/gregtech/client/GT_GUI_ClientConfig.java
+++ b/src/main/java/gregtech/client/GTGUIClientConfig.java
@@ -13,9 +13,9 @@ import gregtech.common.config.client.ConfigPreference;
import gregtech.common.config.client.ConfigRender;
import gregtech.common.config.client.ConfigWaila;
-public class GT_GUI_ClientConfig extends SimpleGuiConfig {
+public class GTGUIClientConfig extends SimpleGuiConfig {
- public GT_GUI_ClientConfig(GuiScreen parentScreen) throws ConfigException {
+ public GTGUIClientConfig(GuiScreen parentScreen) throws ConfigException {
super(
parentScreen,
GregTech.ID,
diff --git a/src/main/java/gregtech/client/GT_GuiFactory.java b/src/main/java/gregtech/client/GTGuiFactory.java
index ecf317a6fa..e8749f20d2 100644
--- a/src/main/java/gregtech/client/GT_GuiFactory.java
+++ b/src/main/java/gregtech/client/GTGuiFactory.java
@@ -4,10 +4,10 @@ import net.minecraft.client.gui.GuiScreen;
import com.gtnewhorizon.gtnhlib.config.SimpleGuiFactory;
-public class GT_GuiFactory implements SimpleGuiFactory {
+public class GTGuiFactory implements SimpleGuiFactory {
@Override
public Class<? extends GuiScreen> mainConfigGuiClass() {
- return GT_GUI_ClientConfig.class;
+ return GTGUIClientConfig.class;
}
}
diff --git a/src/main/java/gregtech/client/GT_SoundLoop.java b/src/main/java/gregtech/client/GTSoundLoop.java
index 905f2c20d3..23569a83e4 100644
--- a/src/main/java/gregtech/client/GT_SoundLoop.java
+++ b/src/main/java/gregtech/client/GTSoundLoop.java
@@ -12,7 +12,7 @@ import gregtech.api.interfaces.tileentity.IGregTechTileEntity;
import gregtech.api.multitileentity.machine.MultiTileBasicMachine;
@SideOnly(Side.CLIENT)
-public class GT_SoundLoop extends MovingSound {
+public class GTSoundLoop extends MovingSound {
private static final float VOLUME_RAMP = 0.0625f;
private final boolean whileActive;
@@ -20,7 +20,7 @@ public class GT_SoundLoop extends MovingSound {
private final int worldID;
private boolean fadeMe = false;
- public GT_SoundLoop(ResourceLocation p_i45104_1_, IGregTechTileEntity base, boolean stopWhenActive,
+ public GTSoundLoop(ResourceLocation p_i45104_1_, IGregTechTileEntity base, boolean stopWhenActive,
boolean stopWhenInactive) {
super(p_i45104_1_);
this.whileActive = stopWhenActive;
@@ -33,7 +33,7 @@ public class GT_SoundLoop extends MovingSound {
volume = VOLUME_RAMP;
}
- public GT_SoundLoop(ResourceLocation sound, MultiTileBasicMachine base, boolean stopWhenActive,
+ public GTSoundLoop(ResourceLocation sound, MultiTileBasicMachine base, boolean stopWhenActive,
boolean stopWhenInactive) {
super(sound);
this.whileActive = stopWhenActive;
diff --git a/src/main/java/gregtech/client/GT_TooltipHandler.java b/src/main/java/gregtech/client/GTTooltipHandler.java
index c527729abd..7236550058 100644
--- a/src/main/java/gregtech/client/GT_TooltipHandler.java
+++ b/src/main/java/gregtech/client/GTTooltipHandler.java
@@ -26,7 +26,7 @@ import java.util.function.Supplier;
import net.minecraft.item.ItemStack;
-public class GT_TooltipHandler {
+public class GTTooltipHandler {
public static void registerTieredTooltip(ItemStack item, Tier tier) {
addItemTooltip(item, tier.tooltip);