diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-12-10 08:13:15 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-12-10 08:13:15 -0500 |
commit | b28023525c6dcf2360c8d03b405d46af4e0e1c6d (patch) | |
tree | ec35eed3f48d089da8ee4ec5ebb14c9db328ce6c /include/world.h | |
parent | ce169efec21d44b6c7b3133280d9088ba1c108a5 (diff) |
Doing shit
Diffstat (limited to 'include/world.h')
-rw-r--r-- | include/world.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/world.h b/include/world.h index ccf93a8..5a16277 100644 --- a/include/world.h +++ b/include/world.h @@ -159,12 +159,14 @@ public: std::vector<Mob *> mob; std::vector<Entity *> entity; std::vector<Object *> object; + std::vector<Particles *> particles; void addStructure(_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 update(Player *p,unsigned int delta); |