diff options
Diffstat (limited to 'src/Mobs/Bat.h')
-rw-r--r-- | src/Mobs/Bat.h | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/Mobs/Bat.h b/src/Mobs/Bat.h index 0d57cd6dd..c460e490c 100644 --- a/src/Mobs/Bat.h +++ b/src/Mobs/Bat.h @@ -7,20 +7,14 @@ -class cBat: - public cPassiveMonster +class cBat : public cPassiveMonster { using Super = cPassiveMonster; -public: - + public: cBat(); CLASS_PROTODEF(cBat) - bool IsHanging(void) const {return false; } -} ; - - - - + bool IsHanging(void) const { return false; } +}; |