diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-01-13 08:31:26 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-01-13 08:31:26 -0500 |
commit | 01c0446eaaf8f84a35ce5d5d82c55b7e155f7e43 (patch) | |
tree | 7c635297c09d6758ac17aa1f353190d1d9778c03 /include | |
parent | 5ec498c3e583a8fe18fdc9fec683df8c2541b28c (diff) | |
parent | bf7d1d29029ca0afa4369bf95b8bd67c73fd5c45 (diff) |
Added fire
Diffstat (limited to 'include')
-rw-r--r-- | include/entities.h | 2 | ||||
-rw-r--r-- | include/world.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/entities.h b/include/entities.h index 8ef7c90..412ec42 100644 --- a/include/entities.h +++ b/include/entities.h @@ -86,6 +86,7 @@ public: bool canMove; bool fountain; bool gravity; + bool behind; Particles(float x, float y, float w, float h, float vx, float vy, Color c, float d){ loc.x = (x); loc.y = (y); @@ -99,6 +100,7 @@ public: duration = d; fountain = false; gravity = true; + behind = false; } ~Particles(){ diff --git a/include/world.h b/include/world.h index 27936f7..91fcf8a 100644 --- a/include/world.h +++ b/include/world.h @@ -289,7 +289,7 @@ float worldGetYBase(World *w); class IndoorWorld : public World { public: - World *outside; + World **outside; IndoorWorld(void); ~IndoorWorld(void); |