diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-12 08:47:15 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-02-12 08:47:15 -0500 |
commit | ba7df965e73e121820f20e3a0e57631d078c11db (patch) | |
tree | 75f09a352be19c369f7bd02e279a275322634d67 /include/world.h | |
parent | 3033594b89f23e65b6152daa6610f991307f2f67 (diff) |
more saving/loading
Diffstat (limited to 'include/world.h')
-rw-r--r-- | include/world.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/world.h b/include/world.h index 47e11f5..0e26ed9 100644 --- a/include/world.h +++ b/include/world.h @@ -342,7 +342,7 @@ public: * playable. */ - void setBGM(const char *path); + void setBGM(std::string path); /** * Plays/stops this world's BGM. If `prev` is not NULL, that world's BGM @@ -439,5 +439,6 @@ extern int worldShade; extern char *currentXML; World *loadWorldFromXML(const char *path); +World *loadWorldFromXMLNoSave(const char *path); #endif // WORLD_H |