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