diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-19 20:30:46 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-10-19 20:30:46 +0200 |
commit | 1b4b905f75c984c3bd9bc9dc553dbc86a8c5276e (patch) | |
tree | aa91f8673b7ed1c42e0ed6136fbf1b6332aaf4c4 /source/Mobs/Ocelot.h | |
parent | Converted some const char*s and std::strings to AStrings (diff) | |
download | cuberite-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 'source/Mobs/Ocelot.h')
-rw-r--r-- | source/Mobs/Ocelot.h | 14 |
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 );
+};
|