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