diff options
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 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); |