Uses of Class
net.minecraft.world.ChunkCoordIntPair

Packages that use ChunkCoordIntPair
net.minecraft.world   
net.minecraft.world.chunk   
net.minecraftforge.common   
net.minecraftforge.event.world   
 

Uses of ChunkCoordIntPair in net.minecraft.world
 

Methods in net.minecraft.world that return types with arguments of type ChunkCoordIntPair
 com.google.common.collect.ImmutableSetMultimap<ChunkCoordIntPair,ForgeChunkManager.Ticket> World.getPersistentChunks()
          Get the persistent chunks for this world
 

Uses of ChunkCoordIntPair in net.minecraft.world.chunk
 

Methods in net.minecraft.world.chunk that return ChunkCoordIntPair
 ChunkCoordIntPair Chunk.getChunkCoordIntPair()
          Gets a ChunkCoordIntPair representing the Chunk's position.
 

Uses of ChunkCoordIntPair in net.minecraftforge.common
 

Fields in net.minecraftforge.common declared as ChunkCoordIntPair
 ChunkCoordIntPair ForgeChunkManager.ForceChunkEvent.location
           
 ChunkCoordIntPair ForgeChunkManager.UnforceChunkEvent.location
           
 

Methods in net.minecraftforge.common that return types with arguments of type ChunkCoordIntPair
static com.google.common.collect.ImmutableSetMultimap<ChunkCoordIntPair,ForgeChunkManager.Ticket> ForgeChunkManager.getPersistentChunksFor(World world)
          The list of persistent chunks in the world.
 

Methods in net.minecraftforge.common with parameters of type ChunkCoordIntPair
static void ForgeChunkManager.forceChunk(ForgeChunkManager.Ticket ticket, ChunkCoordIntPair chunk)
          Force the supplied chunk coordinate to be loaded by the supplied ticket.
static void ForgeChunkManager.reorderChunk(ForgeChunkManager.Ticket ticket, ChunkCoordIntPair chunk)
          Reorganize the internal chunk list so that the chunk supplied is at the *end* of the list This helps if you wish to guarantee a certain "automatic unload ordering" for the chunks in the ticket list
static void ForgeChunkManager.unforceChunk(ForgeChunkManager.Ticket ticket, ChunkCoordIntPair chunk)
          Unforce the supplied chunk, allowing it to be unloaded and stop ticking.
 

Constructors in net.minecraftforge.common with parameters of type ChunkCoordIntPair
ForgeChunkManager.ForceChunkEvent(ForgeChunkManager.Ticket ticket, ChunkCoordIntPair location)
           
ForgeChunkManager.UnforceChunkEvent(ForgeChunkManager.Ticket ticket, ChunkCoordIntPair location)
           
 

Uses of ChunkCoordIntPair in net.minecraftforge.event.world
 

Fields in net.minecraftforge.event.world declared as ChunkCoordIntPair
 ChunkCoordIntPair ChunkWatchEvent.chunk
           
 

Constructors in net.minecraftforge.event.world with parameters of type ChunkCoordIntPair
ChunkWatchEvent.UnWatch(ChunkCoordIntPair chunkLocation, EntityPlayerMP player)
           
ChunkWatchEvent.Watch(ChunkCoordIntPair chunk, EntityPlayerMP player)
           
ChunkWatchEvent(ChunkCoordIntPair chunk, EntityPlayerMP player)