diff options
Diffstat (limited to 'src/Mobs/NewWolf.cpp')
-rw-r--r-- | src/Mobs/NewWolf.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/Mobs/NewWolf.cpp b/src/Mobs/NewWolf.cpp new file mode 100644 index 000000000..4e95bf6e8 --- /dev/null +++ b/src/Mobs/NewWolf.cpp @@ -0,0 +1,24 @@ + +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "NewWolf.h" +#include "../World.h" +#include "../Entities/Player.h" +#include "../Items/ItemHandler.h" + + + + + +cNewWolf::cNewWolf(void) : + super("Wolf", mtWolf, "mob.wolf.hurt", "mob.wolf.death", 0.6, 0.8), + m_IsSitting(false), + m_IsBegging(false), + m_IsAngry(false), + m_CollarColor(14) +{ +} + + + + |