diff options
author | archshift <admin@archshift.com> | 2014-07-23 00:36:13 +0200 |
---|---|---|
committer | archshift <admin@archshift.com> | 2014-07-24 20:21:37 +0200 |
commit | 4191be7ddba820af4ed0c505a8d62416c2b7a8b4 (patch) | |
tree | 23d92e889d345d33e302aeb5e699fb92bbadc04b /src/ChunkDataCallback.h | |
parent | Added a queue for setting chunk data. (diff) | |
download | cuberite-4191be7ddba820af4ed0c505a8d62416c2b7a8b4.tar cuberite-4191be7ddba820af4ed0c505a8d62416c2b7a8b4.tar.gz cuberite-4191be7ddba820af4ed0c505a8d62416c2b7a8b4.tar.bz2 cuberite-4191be7ddba820af4ed0c505a8d62416c2b7a8b4.tar.lz cuberite-4191be7ddba820af4ed0c505a8d62416c2b7a8b4.tar.xz cuberite-4191be7ddba820af4ed0c505a8d62416c2b7a8b4.tar.zst cuberite-4191be7ddba820af4ed0c505a8d62416c2b7a8b4.zip |
Diffstat (limited to '')
-rw-r--r-- | src/ChunkDataCallback.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/ChunkDataCallback.h b/src/ChunkDataCallback.h index 53d44d038..804299816 100644 --- a/src/ChunkDataCallback.h +++ b/src/ChunkDataCallback.h @@ -29,25 +29,25 @@ public: (only in processes where multiple chunks can be processed, such as cWorld::ForEachChunkInRect()). If false is returned, the chunk is skipped. */ - virtual bool Coords(int a_ChunkX, int a_ChunkZ) { UNUSED(a_ChunkX); UNUSED(a_ChunkZ); return true; }; + virtual bool Coords(int a_ChunkX, int a_ChunkZ) { UNUSED(a_ChunkX); UNUSED(a_ChunkZ); return true; } /// Called once to provide heightmap data - virtual void HeightMap(const cChunkDef::HeightMap * a_HeightMap) {UNUSED(a_HeightMap); }; + virtual void HeightMap(const cChunkDef::HeightMap * a_HeightMap) { UNUSED(a_HeightMap); } /// Called once to provide biome data - virtual void BiomeData(const cChunkDef::BiomeMap * a_BiomeMap) {UNUSED(a_BiomeMap); }; + virtual void BiomeData(const cChunkDef::BiomeMap * a_BiomeMap) { UNUSED(a_BiomeMap); } /// Called once to let know if the chunk lighting is valid. Return value is ignored - virtual void LightIsValid(bool a_IsLightValid) {UNUSED(a_IsLightValid); }; + virtual void LightIsValid(bool a_IsLightValid) { UNUSED(a_IsLightValid); } /// Called once to export block info - virtual void ChunkData(const cChunkData & a_Buffer) {UNUSED(a_Buffer); }; + virtual void ChunkData(const cChunkData & a_Buffer) { UNUSED(a_Buffer); } /// Called for each entity in the chunk - virtual void Entity(cEntity * a_Entity) {UNUSED(a_Entity); }; + virtual void Entity(cEntity * a_Entity) { UNUSED(a_Entity); } /// Called for each blockentity in the chunk - virtual void BlockEntity(cBlockEntity * a_Entity) {UNUSED(a_Entity); }; + virtual void BlockEntity(cBlockEntity * a_Entity) { UNUSED(a_Entity); } } ; |