diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-13 10:01:21 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-09-13 10:01:21 -0400 |
commit | a8fb538152c5e7d83b161a3868870aa4009ea36f (patch) | |
tree | 9cae69fc2ef26b6d57bab56e3912d6a4545800ff /include/World.h | |
parent | 384005bf1ebb0f303fec721a62970a78792b49c3 (diff) |
colors
Diffstat (limited to 'include/World.h')
-rw-r--r-- | include/World.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/World.h b/include/World.h index 6e5c3da..4d55c5d 100644 --- a/include/World.h +++ b/include/World.h @@ -14,6 +14,7 @@ class World { private:
struct line_t {
double start; // Where land begins, going down (i.e. y)
+ unsigned char color;
} __attribute__ ((packed)) *line;
unsigned int lineCount; // Size of line array, calculated in the constructor
unsigned int entCount; // Count of currently bound entities
|