aboutsummaryrefslogtreecommitdiffstats
path: root/include/world.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-05-02 08:49:17 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-05-02 08:49:17 -0400
commit6a728a46d837384074228959d6330ba29e03aee0 (patch)
tree9a4deef7aea5c6b936eebdb01d8538744030d116 /include/world.hpp
parentafa34b3140979874d46a362e83dc0d1eebd137eb (diff)
arena/page fixes
Diffstat (limited to 'include/world.hpp')
-rw-r--r--include/world.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/include/world.hpp b/include/world.hpp
index 0aea879..200b065 100644
--- a/include/world.hpp
+++ b/include/world.hpp
@@ -180,6 +180,9 @@ public:
// gets the world's width in TODO
int getTheWidth(void) const;
+ // gets the starting x coordinate of the world
+ float getWorldStart(void) const;
+
// gets a pointer to the most recently added light
Light *getLastLight(void);
@@ -305,6 +308,7 @@ public:
* transported to a temporary world with the player, and the Mob will be
* killed upon exiting the arena.
*/
+
class Arena : public World {
private:
@@ -323,21 +327,18 @@ public:
WorldSwitchInfo exitArena(Player *p);
};
-
std::string getWorldWeatherStr(WorldWeather ww);
/**
* Loads the player into the world created by the given XML file. If a world is
* already loaded it will be saved before the transition is made.
*/
-
World *loadWorldFromXML(std::string path);
/**
* Loads the player into the XML-scripted world, but does not save data from the
* previous world if one was loaded.
*/
-
World *loadWorldFromXMLNoSave(std::string path);
World *loadWorldFromPtr(World *ptr);