From 34e0bc759326803ead6e752533b402ff32db9dd2 Mon Sep 17 00:00:00 2001 From: Samuel Barney Date: Wed, 20 Aug 2014 18:56:31 -0600 Subject: Got the new mob classes implemented. --- src/Mobs/NewBat.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/Mobs/NewBat.h (limited to 'src/Mobs/NewBat.h') diff --git a/src/Mobs/NewBat.h b/src/Mobs/NewBat.h new file mode 100644 index 000000000..354413cdf --- /dev/null +++ b/src/Mobs/NewBat.h @@ -0,0 +1,25 @@ + +#pragma once + +#include "NewMonster.h" + + + + + +class cNewBat : + public cNewMonster +{ + typedef cNewMonster super; + +public: + cNewBat(void); + + CLASS_PROTODEF(cNewBat) + + bool IsHanging(void) const {return false; } +} ; + + + + -- cgit v1.2.3