Package com.rvandoosselaer.blocks
Interface BlocksManagerListener
-
- All Known Implementing Classes:
ChunkPager
,Pager
,PhysicsChunkPager
public interface BlocksManagerListener
A listener for theBlocksManager
that gets called when a chunk is available to be retrieved from the BlocksManagers cache. Applications can use this be notified when a chunk or an updated version of a chunk is available.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onChunkAvailable(Chunk chunk)
Called when the chunk is available and the node and collision mesh are created.
-
-
-
Method Detail
-
onChunkAvailable
void onChunkAvailable(Chunk chunk)
Called when the chunk is available and the node and collision mesh are created.- Parameters:
chunk
-
-
-