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