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