diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-19 08:23:11 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-19 08:23:11 -0400 |
commit | b806a2d9bd6932525263a172ea2837eb1a94717d (patch) | |
tree | 5b77d63edebf66df11ae29229eaf4c44223f6f7b /include | |
parent | 1f3fee78514fb097834a2cb4235aaad3bdf639e7 (diff) |
stuff
Diffstat (limited to 'include')
-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 21d6de8..3b76f19 100644 --- a/include/world.h +++ b/include/world.h @@ -11,9 +11,11 @@ private: } __attribute__ ((packed)) *line; unsigned int lineCount; int x_start; + World *behind,*infront; public: World(unsigned int width); ~World(void); + void addLayer(unsigned int width); void draw(vec2 *vec); void detect(vec2 *v,vec2 *vel,const float width); }; |