aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2015-09-12 18:44:23 -0400
committerClyne Sullivan <tullivan99@gmail.com>2015-09-12 18:44:23 -0400
commita744d3312dd2f0253f7965253b3eff683cca3453 (patch)
tree6877af9fc2bd27fdab00b8fd946195939035f21e /include
parentd68b30ee201579e06f050a9448e4dcf883860064 (diff)
Real layered worlds n stuff
Diffstat (limited to 'include')
-rw-r--r--include/World.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/World.h b/include/World.h
index 13ccafc..09e06d9 100644
--- a/include/World.h
+++ b/include/World.h
@@ -6,8 +6,6 @@
#define goWorldLeft(w) if(w->toLeft){w=w->toLeft;}
#define goWorldRight(w) if(w->toRight){w=w->toRight;}
-#define LAYER_SCALE 2
-
class World {
private:
struct line_t {
@@ -15,7 +13,6 @@ private:
double start; // Where to change to dirt, going down (y)
} __attribute__ ((packed)) *line;
unsigned int lineCount;
- bool root,drawn;
public:
World *behind,*infront;
World *toLeft,*toRight;
@@ -26,8 +23,7 @@ public:
float getWidth(void);
void saveToFile(FILE *f,World *parent);
void loadFromFile(FILE *f,World *parent);
- void addLayer(void);
- void setRoot(void);
+ void addLayer(const float width);
};
#endif // WORLD_H