summaryrefslogtreecommitdiffstats
path: root/source/Mobs/Ocelot.cpp
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.cpp
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 'source/Mobs/Ocelot.cpp')
-rw-r--r--source/Mobs/Ocelot.cpp45
1 files changed, 45 insertions, 0 deletions
diff --git a/source/Mobs/Ocelot.cpp b/source/Mobs/Ocelot.cpp
new file mode 100644
index 000000000..ec50a9656
--- /dev/null
+++ b/source/Mobs/Ocelot.cpp
@@ -0,0 +1,45 @@
+
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+
+#include "Ocelot.h"
+
+
+
+
+
+cOcelot::cOcelot()
+{
+ m_MobType = 98;
+ GetMonsterConfig("Ocelot");
+}
+
+
+
+
+
+cOcelot::~cOcelot()
+{
+}
+
+
+
+
+
+bool cOcelot::IsA( const char* a_EntityType )
+{
+ if( strcmp( a_EntityType, "cOcelot" ) == 0 ) return true;
+ return cMonster::IsA( a_EntityType );
+}
+
+
+
+
+
+void cOcelot::KilledBy( cEntity* a_Killer )
+{
+ cMonster::KilledBy( a_Killer );
+}
+
+
+
+