aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/internal/IGT_Mod.java
diff options
context:
space:
mode:
authorDream-Master <dream-master@gmx.net>2016-06-21 18:42:02 +0200
committerDream-Master <dream-master@gmx.net>2016-06-21 18:42:02 +0200
commitb09b54435f9427332854558c42bd2c902825cbfe (patch)
tree96a8143cafd99b28a194714e9846b8e974ce50f8 /src/main/java/gregtech/api/interfaces/internal/IGT_Mod.java
parent6fe4d4a8d3226c02a65a70d7a8035a219cbd2c66 (diff)
downloadGT5-Unofficial-b09b54435f9427332854558c42bd2c902825cbfe.tar.gz
GT5-Unofficial-b09b54435f9427332854558c42bd2c902825cbfe.tar.bz2
GT5-Unofficial-b09b54435f9427332854558c42bd2c902825cbfe.zip
remove all
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/internal/IGT_Mod.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/internal/IGT_Mod.java46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/main/java/gregtech/api/interfaces/internal/IGT_Mod.java b/src/main/java/gregtech/api/interfaces/internal/IGT_Mod.java
deleted file mode 100644
index 945c988480..0000000000
--- a/src/main/java/gregtech/api/interfaces/internal/IGT_Mod.java
+++ /dev/null
@@ -1,46 +0,0 @@
-package gregtech.api.interfaces.internal;
-
-import net.minecraft.entity.player.EntityPlayer;
-import net.minecraft.item.ItemStack;
-import net.minecraft.world.World;
-
-/**
- * Interface used by the Mods Main Class to reference to internals.
- * <p/>
- * Don't even think about including this File in your Mod.
- */
-public interface IGT_Mod {
- /**
- * This means that Server specific Basefiles are definitely existing! Not if the World is actually server side or not!
- */
- public boolean isServerSide();
-
- /**
- * This means that Client specific Basefiles are definitely existing! Not if the World is actually client side or not!
- */
- public boolean isClientSide();
-
- /**
- * This means that Bukkit specific Basefiles are definitely existing! Not if the World is actually bukkit server or not!
- */
- public boolean isBukkitSide();
-
- /**
- * works only ClientSide otherwise returns null
- */
- public EntityPlayer getThePlayer();
-
- //---------- Internal Usage Only ----------
-
- /**
- * works only ClientSide otherwise returns 0
- *
- * @return the Index of the added Armor
- */
- public int addArmor(String aArmorPrefix);
-
- /**
- * Plays the Sonictron Sound for the ItemStack on the Client Side
- */
- public void doSonictronSound(ItemStack aStack, World aWorld, double aX, double aY, double aZ);
-} \ No newline at end of file