Package net.minecraft.src
Interface IChunkLoader
- All Known Implementing Classes:
AnvilChunkLoader
public interface IChunkLoader
-
Method Summary
Modifier and TypeMethodDescriptionvoidCalled every World.tick()Loads the specified(XZ) chunk into the specified world.voidvoidsaveExtraChunkData(World var1, Chunk var2) Save extra data associated with this Chunk not normally saved during autosave, only during chunk unload.voidSave extra data not associated with any Chunk.
-
Method Details
-
loadChunk
Loads the specified(XZ) chunk into the specified world.- Throws:
IOException
-
saveChunk
- Throws:
MinecraftExceptionIOException
-
saveExtraChunkData
Save extra data associated with this Chunk not normally saved during autosave, only during chunk unload. Currently unused. -
chunkTick
void chunkTick()Called every World.tick() -
saveExtraData
void saveExtraData()Save extra data not associated with any Chunk. Not saved during autosave, only during world unload. Currently unused.
-