diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-29 08:31:49 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-29 08:31:49 -0500 |
commit | 6241707a788269e09adb957c659397750d19fda3 (patch) | |
tree | 2b72368aa1432093046cc615128bd74a4e0181e2 /include/world.h | |
parent | c7f4dd960d2530b246dd0b5d04f77d5b11c65551 (diff) |
world rewrite -- fixed all world stuffs
Diffstat (limited to 'include/world.h')
-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 f60c181..05b2a10 100644 --- a/include/world.h +++ b/include/world.h @@ -63,7 +63,7 @@ typedef struct { typedef struct { bool grassUnpressed; - int grassHeight[2]; + float grassHeight[2]; float groundHeight; unsigned char groundColor; } WorldData; @@ -481,7 +481,7 @@ public: }; extern int worldShade; -extern char *currentXML; +extern std::string currentXML; World *loadWorldFromXML(const char *path); World *loadWorldFromXMLNoSave(const char *path); |