aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/IChunkLoader.java
blob: adba5e721e33c87d313a6bd6c584c99cce689698 (plain)
1
2
3
4
5
6
7
8
9
package gregtech.api.interfaces;

import net.minecraft.world.ChunkCoordIntPair;

// This interface is implemented by the machines that actively load a working chunk
public interface IChunkLoader {
    // return a working chunk coordinates, may be null
    ChunkCoordIntPair getActiveChunk();
}