diff options
Diffstat (limited to 'src/Mobs/NewVillager.cpp')
-rw-r--r-- | src/Mobs/NewVillager.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/Mobs/NewVillager.cpp b/src/Mobs/NewVillager.cpp new file mode 100644 index 000000000..844d65b61 --- /dev/null +++ b/src/Mobs/NewVillager.cpp @@ -0,0 +1,19 @@ + +#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules + +#include "NewVillager.h" +#include "../World.h" +#include "../BlockArea.h" +#include "../Blocks/BlockHandler.h" +#include "../BlockInServerPluginInterface.h" + + + + + +cNewVillager::cNewVillager(eVillagerType VillagerType) : + super("Villager", mtVillager, "", "", 0.6, 1.8), + m_Type(VillagerType) +{ +} + |