diff options
| author | Blood-Asp <bloodasphendrik@gmail.com> | 2015-10-20 00:24:30 +0200 |
|---|---|---|
| committer | Blood-Asp <bloodasphendrik@gmail.com> | 2015-10-20 00:24:30 +0200 |
| commit | 9202e2bfe31b1c38d74fadbc050292e5016de8b3 (patch) | |
| tree | a5d45c0544609332c0b5219119329af8e4bee35b /src/main/java/gregtech/api/interfaces/internal/IGT_Mod.java | |
| parent | 9367648dd69c4834c213a050aeae4af0acea1ed2 (diff) | |
| parent | 85c804fa112fd1f19c91e45d150a787cfbf0f7a8 (diff) | |
| download | GT5-Unofficial-9202e2bfe31b1c38d74fadbc050292e5016de8b3.tar.gz GT5-Unofficial-9202e2bfe31b1c38d74fadbc050292e5016de8b3.tar.bz2 GT5-Unofficial-9202e2bfe31b1c38d74fadbc050292e5016de8b3.zip | |
Merge pull request #249 from ShawnBuckley/source-move
Move source directory
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.java | 34 |
1 files changed, 34 insertions, 0 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 new file mode 100644 index 0000000000..f64d120ec8 --- /dev/null +++ b/src/main/java/gregtech/api/interfaces/internal/IGT_Mod.java @@ -0,0 +1,34 @@ +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. + * + * 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 |
