summaryrefslogtreecommitdiffstats
path: root/src/Mobs/NewWitch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/NewWitch.h')
-rw-r--r--src/Mobs/NewWitch.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/Mobs/NewWitch.h b/src/Mobs/NewWitch.h
new file mode 100644
index 000000000..02d9cc3d0
--- /dev/null
+++ b/src/Mobs/NewWitch.h
@@ -0,0 +1,28 @@
+
+#pragma once
+
+#include "NewMonster.h"
+#include "../MersenneTwister.h"
+
+
+
+
+
+class cNewWitch :
+ public cNewMonster
+{
+ typedef cNewMonster super;
+
+public:
+ cNewWitch();
+
+ CLASS_PROTODEF(cNewWitch)
+
+ virtual void GetDrops(cItems & a_Drops, cEntity * a_Killer = NULL) override;
+
+ bool IsAngry(void) const {return false; }
+} ;
+
+
+
+