aboutsummaryrefslogtreecommitdiffstats
path: root/include/world.h
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-12-10 08:13:15 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-12-10 08:13:15 -0500
commitb28023525c6dcf2360c8d03b405d46af4e0e1c6d (patch)
treeec35eed3f48d089da8ee4ec5ebb14c9db328ce6c /include/world.h
parentce169efec21d44b6c7b3133280d9088ba1c108a5 (diff)
Doing shit
Diffstat (limited to 'include/world.h')
-rw-r--r--include/world.h2
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);