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