diff options
Diffstat (limited to 'source/Mobs/Silverfish.h')
-rw-r--r-- | source/Mobs/Silverfish.h | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/source/Mobs/Silverfish.h b/source/Mobs/Silverfish.h index 453995ec6..4e4fbd11c 100644 --- a/source/Mobs/Silverfish.h +++ b/source/Mobs/Silverfish.h @@ -1,12 +1,23 @@ + #pragma once #include "AggressiveMonster.h" -class cSilverfish : public cAggressiveMonster + + + + +class cSilverfish : + public cAggressiveMonster { + typedef cAggressiveMonster super; + public: - cSilverfish(); - ~cSilverfish(); + cSilverfish(void); + + CLASS_PROTODEF(cSilverfish); +} ; + + + - virtual bool IsA(const char * a_EntityType); -}; |