summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Ocelot.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/Mobs/Ocelot.h')
-rw-r--r--source/Mobs/Ocelot.h19
1 files changed, 14 insertions, 5 deletions
diff --git a/source/Mobs/Ocelot.h b/source/Mobs/Ocelot.h
index 87571022f..07095c660 100644
--- a/source/Mobs/Ocelot.h
+++ b/source/Mobs/Ocelot.h
@@ -1,14 +1,23 @@
+
#pragma once
#include "PassiveMonster.h"
-class cOcelot : public cPassiveMonster
+
+
+
+
+class cOcelot :
+ public cPassiveMonster
{
+ typedef cPassiveMonster super;
+
public:
cOcelot();
- ~cOcelot();
- virtual bool IsA( const char* a_EntityType );
+ virtual bool IsA(const char * a_EntityType) override;
+} ;
+
+
+
- virtual void KilledBy( cEntity* a_Killer );
-};