summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Spider.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Spider.h')
-rw-r--r--src/Mobs/Spider.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Mobs/Spider.h b/src/Mobs/Spider.h
new file mode 100644
index 000000000..51e65d028
--- /dev/null
+++ b/src/Mobs/Spider.h
@@ -0,0 +1,25 @@
+
+#pragma once
+
+#include "AggressiveMonster.h"
+
+
+
+
+
+class cSpider :
+ public cAggressiveMonster
+{
+ typedef cAggressiveMonster super;
+
+public:
+ cSpider(void);
+
+ CLASS_PROTODEF(cSpider);
+
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+} ;
+
+
+
+