diff options
author | Alexander Harkness <me@bearbin.net> | 2024-11-02 22:27:47 +0100 |
---|---|---|
committer | Alexander Harkness <me@bearbin.net> | 2024-11-02 22:27:47 +0100 |
commit | cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a (patch) | |
tree | f647b20e1823f1846af88e832cf82a4a02e96e69 /src/BlockEntities/DropperEntity.h | |
parent | Improve clang-format config file, remove automatically enforced code style from contrib guide. (diff) | |
download | cuberite-clang-format-codebase.tar cuberite-clang-format-codebase.tar.gz cuberite-clang-format-codebase.tar.bz2 cuberite-clang-format-codebase.tar.lz cuberite-clang-format-codebase.tar.xz cuberite-clang-format-codebase.tar.zst cuberite-clang-format-codebase.zip |
Diffstat (limited to '')
-rw-r--r-- | src/BlockEntities/DropperEntity.h | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/BlockEntities/DropperEntity.h b/src/BlockEntities/DropperEntity.h index ea12a89b9..8d84ced46 100644 --- a/src/BlockEntities/DropperEntity.h +++ b/src/BlockEntities/DropperEntity.h @@ -16,20 +16,17 @@ // tolua_begin -class cDropperEntity : - public cDropSpenserEntity +class cDropperEntity : public cDropSpenserEntity { // tolua_end using Super = cDropSpenserEntity; -public: // tolua_export - + public: // tolua_export /** Constructor used for normal operation */ cDropperEntity(BLOCKTYPE a_BlockType, NIBBLETYPE a_BlockMeta, Vector3i a_Pos, cWorld * a_World); -protected: - + protected: // cDropSpenserEntity overrides: virtual void DropSpenseFromSlot(cChunk & a_Chunk, int a_SlotNum) override; -} ; // tolua_export +}; // tolua_export |