diff options
Diffstat (limited to 'include/world.h')
-rw-r--r-- | include/world.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/world.h b/include/world.h index 5a16277..dbaaf2c 100644 --- a/include/world.h +++ b/include/world.h @@ -161,12 +161,13 @@ public: std::vector<Object *> object; std::vector<Particles *> particles; - void addStructure(_TYPE t,float x,float y,World *outside,World *inside); + void addStructure(_TYPE t,BUILD_SUB sub,float x,float y,World *outside,World *inside); + void addVillage(int bCount, int npcMin, int npcMax,_TYPE t,float x,float y,World *outside,World *inside); void addMob(int t,float x,float y); void addMob(int t,float x,float y,void (*hey)(Mob *)); void addNPC(float x,float y); void addObject(ITEM_ID, bool, const char *, float, float); - void addParticle(float x, float y, float w, float h, Color color); + void addParticle(float, float, float, float, float, float, Color color, int); void update(Player *p,unsigned int delta); |