summaryrefslogtreecommitdiffstats
path: root/src/Mobs/Bat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Mobs/Bat.h')
-rw-r--r--src/Mobs/Bat.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/Mobs/Bat.h b/src/Mobs/Bat.h
new file mode 100644
index 000000000..e878d0ee8
--- /dev/null
+++ b/src/Mobs/Bat.h
@@ -0,0 +1,25 @@
+
+#pragma once
+
+#include "PassiveMonster.h"
+
+
+
+
+
+class cBat :
+ public cPassiveMonster
+{
+ typedef cPassiveMonster super;
+
+public:
+ cBat(void);
+
+ CLASS_PROTODEF(cBat);
+
+ bool IsHanging(void) const {return false; }
+} ;
+
+
+
+