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/MobCensus.h | |
parent | Improve clang-format config file, remove automatically enforced code style from contrib guide. (diff) | |
download | cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.gz cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.bz2 cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.lz cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.xz cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.tar.zst cuberite-cb50ec10591c0e0e4b9915e642bc50d3d8d1fd0a.zip |
Diffstat (limited to 'src/MobCensus.h')
-rw-r--r-- | src/MobCensus.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/MobCensus.h b/src/MobCensus.h index 1d1123cfa..677b16e03 100644 --- a/src/MobCensus.h +++ b/src/MobCensus.h @@ -24,7 +24,7 @@ as side effect 2 : it also know the caps for mobs number and can compare census */ class cMobCensus { -public: + public: /** Returns the nested proximity counter */ cMobProximityCounter & GetProximityCounter(void); @@ -41,7 +41,7 @@ public: /** log the results of census to server console */ void Logd(void); -protected : + protected: cMobProximityCounter m_ProximityCounter; cMobFamilyCollecter m_MobFamilyCollecter; @@ -52,8 +52,4 @@ protected : /** Returns the cap multiplier value of the given monster family */ static int GetCapMultiplier(cMonster::eFamily a_MobFamily); -} ; - - - - +}; |