diff options
Diffstat (limited to 'include/entities.h')
-rw-r--r-- | include/entities.h | 2 |
1 files changed, 2 insertions, 0 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(){ |