aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/api/interfaces/IChunkLoader.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gtPlusPlus/api/interfaces/IChunkLoader.java')
-rw-r--r--src/main/java/gtPlusPlus/api/interfaces/IChunkLoader.java48
1 files changed, 23 insertions, 25 deletions
diff --git a/src/main/java/gtPlusPlus/api/interfaces/IChunkLoader.java b/src/main/java/gtPlusPlus/api/interfaces/IChunkLoader.java
index c04e25f570..ad65c03429 100644
--- a/src/main/java/gtPlusPlus/api/interfaces/IChunkLoader.java
+++ b/src/main/java/gtPlusPlus/api/interfaces/IChunkLoader.java
@@ -1,33 +1,31 @@
package gtPlusPlus.api.interfaces;
import java.util.Set;
-
import net.minecraft.world.ChunkCoordIntPair;
public interface IChunkLoader {
- public long getTicksRemaining();
-
- public void setTicksRemaining(long aTicks);
-
- public ChunkCoordIntPair getResidingChunk();
-
- public void setResidingChunk(ChunkCoordIntPair aCurrentChunk);
-
- public boolean getChunkLoadingActive();
-
- public void setChunkLoadingActive(boolean aActive);
-
- public boolean getDoesWorkChunkNeedReload();
-
- public void setDoesWorkChunkNeedReload(boolean aActive);
-
- public boolean addChunkToLoadedList(ChunkCoordIntPair aActiveChunk);
-
- public boolean removeChunkFromLoadedList(ChunkCoordIntPair aActiveChunk);
-
- public Set<ChunkCoordIntPair> getManagedChunks();
-
- public int getChunkloaderTier();
-
+ public long getTicksRemaining();
+
+ public void setTicksRemaining(long aTicks);
+
+ public ChunkCoordIntPair getResidingChunk();
+
+ public void setResidingChunk(ChunkCoordIntPair aCurrentChunk);
+
+ public boolean getChunkLoadingActive();
+
+ public void setChunkLoadingActive(boolean aActive);
+
+ public boolean getDoesWorkChunkNeedReload();
+
+ public void setDoesWorkChunkNeedReload(boolean aActive);
+
+ public boolean addChunkToLoadedList(ChunkCoordIntPair aActiveChunk);
+
+ public boolean removeChunkFromLoadedList(ChunkCoordIntPair aActiveChunk);
+
+ public Set<ChunkCoordIntPair> getManagedChunks();
+
+ public int getChunkloaderTier();
}