diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-08-31 02:22:54 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-08-31 02:22:54 +1000 |
commit | 4e353a8aaa222cd888bdc3e22c14cda4523ff71b (patch) | |
tree | 078309779eaff996319b6cc6eb1d7b7a935d88d2 /src/Java/gtPlusPlus/api/interfaces | |
parent | d90c23ef2fbd7f9f1733b5e041c2a9098684e00f (diff) | |
download | GT5-Unofficial-4e353a8aaa222cd888bdc3e22c14cda4523ff71b.tar.gz GT5-Unofficial-4e353a8aaa222cd888bdc3e22c14cda4523ff71b.tar.bz2 GT5-Unofficial-4e353a8aaa222cd888bdc3e22c14cda4523ff71b.zip |
+ Actually uploaded all of the assets for the new covers, items & overlays.
% Renamed IChunkLoader.java to IChunkLoaderTile.java.
Diffstat (limited to 'src/Java/gtPlusPlus/api/interfaces')
-rw-r--r-- | src/Java/gtPlusPlus/api/interfaces/IChunkLoader.java | 9 | ||||
-rw-r--r-- | src/Java/gtPlusPlus/api/interfaces/IChunkLoaderTile.java | 10 |
2 files changed, 10 insertions, 9 deletions
diff --git a/src/Java/gtPlusPlus/api/interfaces/IChunkLoader.java b/src/Java/gtPlusPlus/api/interfaces/IChunkLoader.java deleted file mode 100644 index e6aaabbba0..0000000000 --- a/src/Java/gtPlusPlus/api/interfaces/IChunkLoader.java +++ /dev/null @@ -1,9 +0,0 @@ -package gtPlusPlus.api.interfaces; - -import net.minecraft.inventory.IInventory; - -public interface IChunkLoader extends IInventory, net.minecraft.world.chunk.storage.IChunkLoader{ - - long getTicksRemaining(); - -} diff --git a/src/Java/gtPlusPlus/api/interfaces/IChunkLoaderTile.java b/src/Java/gtPlusPlus/api/interfaces/IChunkLoaderTile.java new file mode 100644 index 0000000000..16152668fc --- /dev/null +++ b/src/Java/gtPlusPlus/api/interfaces/IChunkLoaderTile.java @@ -0,0 +1,10 @@ +package gtPlusPlus.api.interfaces; + +import net.minecraft.inventory.IInventory; +import net.minecraft.world.chunk.storage.IChunkLoader; + +public interface IChunkLoaderTile extends IInventory, IChunkLoader{ + + long getTicksRemaining(); + +} |