diff options
Diffstat (limited to '')
-rw-r--r-- | source/Mobs/Skeleton.h | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/source/Mobs/Skeleton.h b/source/Mobs/Skeleton.h index 84a434905..101358f18 100644 --- a/source/Mobs/Skeleton.h +++ b/source/Mobs/Skeleton.h @@ -1,16 +1,26 @@ + #pragma once #include "AggressiveMonster.h" -class cSkeleton : public cAggressiveMonster + + + + +class cSkeleton : + public cAggressiveMonster { + typedef cAggressiveMonster super; + public: cSkeleton(); - ~cSkeleton(); - virtual bool IsA( const char* a_EntityType ); + virtual bool IsA(const char * a_EntityType) override; + + virtual void Tick(float a_Dt) override; + virtual void GetDrops(cItems & a_Drops, cPawn * a_Killer = NULL) override; +} ; + + + - virtual void Tick(float a_Dt); - virtual void KilledBy( cEntity* a_Killer ); - -}; |