diff options
author | x12xx12x <44411062+12xx12@users.noreply.github.com> | 2024-11-10 00:07:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-10 00:07:11 +0100 |
commit | 44cb43f13cdd8f2b3efb9ae77daa3e994c62bc26 (patch) | |
tree | d252e4cf7abc71dd860c118ba0aed33b806c4fe2 /src/ChunkDataCallback.h | |
parent | fixes for api changes in embedtls (#5540) (diff) | |
download | cuberite-44cb43f13cdd8f2b3efb9ae77daa3e994c62bc26.tar cuberite-44cb43f13cdd8f2b3efb9ae77daa3e994c62bc26.tar.gz cuberite-44cb43f13cdd8f2b3efb9ae77daa3e994c62bc26.tar.bz2 cuberite-44cb43f13cdd8f2b3efb9ae77daa3e994c62bc26.tar.lz cuberite-44cb43f13cdd8f2b3efb9ae77daa3e994c62bc26.tar.xz cuberite-44cb43f13cdd8f2b3efb9ae77daa3e994c62bc26.tar.zst cuberite-44cb43f13cdd8f2b3efb9ae77daa3e994c62bc26.zip |
Diffstat (limited to 'src/ChunkDataCallback.h')
-rw-r--r-- | src/ChunkDataCallback.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ChunkDataCallback.h b/src/ChunkDataCallback.h index 49b3f1e2b..3b47a54f9 100644 --- a/src/ChunkDataCallback.h +++ b/src/ChunkDataCallback.h @@ -18,7 +18,7 @@ /** Interface class used for getting data out of a chunk using the GetAllData() function. Implementation must use the pointers immediately and NOT store any of them for later use The virtual methods are called in the same order as they're declared here. */ -class cChunkDataCallback abstract +class cChunkDataCallback { public: @@ -44,7 +44,7 @@ public: /** Called for each entity in the chunk */ virtual void Entity(cEntity * a_Entity) { UNUSED(a_Entity); } - /** Called for each blockentity in the chunk */ + /** Called for each block entity in the chunk */ virtual void BlockEntity(cBlockEntity * a_Entity) { UNUSED(a_Entity); } } ; |