diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-11 22:58:02 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-11 22:58:02 -0400 |
commit | 3782c6ae9581063b3ed9e45467ce43f0b320bb19 (patch) | |
tree | 77dd569b249ec0a2f120251d6d77e6c69cea6933 /include | |
parent | a55903b8784df7c7033983212ca974e472c51dbf (diff) |
improved layers
Diffstat (limited to 'include')
-rw-r--r-- | include/World.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/World.h b/include/World.h index 91eb81e..13ccafc 100644 --- a/include/World.h +++ b/include/World.h @@ -6,7 +6,7 @@ #define goWorldLeft(w) if(w->toLeft){w=w->toLeft;}
#define goWorldRight(w) if(w->toRight){w=w->toRight;}
-#define LAYER_SCALE 1
+#define LAYER_SCALE 2
class World {
private:
@@ -15,7 +15,7 @@ private: double start; // Where to change to dirt, going down (y)
} __attribute__ ((packed)) *line;
unsigned int lineCount;
- bool root;
+ bool root,drawn;
public:
World *behind,*infront;
World *toLeft,*toRight;
|