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