diff options
Diffstat (limited to 'src/Mobs/Skeleton.h')
-rw-r--r-- | src/Mobs/Skeleton.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/Mobs/Skeleton.h b/src/Mobs/Skeleton.h index 486bfe609..12ca5c1ba 100644 --- a/src/Mobs/Skeleton.h +++ b/src/Mobs/Skeleton.h @@ -7,13 +7,11 @@ -class cSkeleton: - public cAggressiveMonster +class cSkeleton : public cAggressiveMonster { using Super = cAggressiveMonster; -public: - + public: cSkeleton(); CLASS_PROTODEF(cSkeleton) @@ -28,8 +26,6 @@ public: bool IsChargingBow() const { return m_ChargingBow; } -private: - + private: bool m_ChargingBow; - -} ; +}; |