blob: 844d65b616392612f5f1a73da0f411d79df1d734 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
{
}
|