aboutsummaryrefslogtreecommitdiffstats
path: root/include/world.h
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-02-29 08:31:49 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-02-29 08:31:49 -0500
commit6241707a788269e09adb957c659397750d19fda3 (patch)
tree2b72368aa1432093046cc615128bd74a4e0181e2 /include/world.h
parentc7f4dd960d2530b246dd0b5d04f77d5b11c65551 (diff)
world rewrite -- fixed all world stuffs
Diffstat (limited to 'include/world.h')
-rw-r--r--include/world.h4
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);