summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Ocelot.h
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-19 20:30:46 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2012-10-19 20:30:46 +0200
commit1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e (patch)
treeaa91f8673b7ed1c42e0ed6136fbf1b6332aaf4c4 /source/Mobs/Ocelot.h
parentConverted some const char*s and std::strings to AStrings (diff)
downloadcuberite-1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e.tar
cuberite-1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e.tar.gz
cuberite-1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e.tar.bz2
cuberite-1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e.tar.lz
cuberite-1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e.tar.xz
cuberite-1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e.tar.zst
cuberite-1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e.zip
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 );
+};