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