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/Mobs/SnowGolem.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 'src/Mobs/SnowGolem.h')
-rw-r--r-- | src/Mobs/SnowGolem.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/Mobs/SnowGolem.h b/src/Mobs/SnowGolem.h index 6c6e88868..1d18f6cfe 100644 --- a/src/Mobs/SnowGolem.h +++ b/src/Mobs/SnowGolem.h @@ -7,13 +7,11 @@ -class cSnowGolem: - public cPassiveAggressiveMonster +class cSnowGolem : public cPassiveAggressiveMonster { using Super = cPassiveAggressiveMonster; -public: - + public: cSnowGolem(); CLASS_PROTODEF(cSnowGolem) @@ -21,8 +19,4 @@ public: virtual void Tick(std::chrono::milliseconds a_Dt, cChunk & a_Chunk) override; virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = nullptr) override; virtual bool Attack(std::chrono::milliseconds a_Dt) override; -} ; - - - - +}; |