diff options
Diffstat (limited to 'src/Mobs/NewBat.h')
-rw-r--r-- | src/Mobs/NewBat.h | 25 |
1 files changed, 25 insertions, 0 deletions
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; } +} ; + + + + |