aboutsummaryrefslogtreecommitdiffstats
path: root/include/world.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-04-28 11:45:52 -0400
committerClyne Sullivan <tullivan99@gmail.com>2016-04-28 11:45:52 -0400
commite2fb36d5da705278fb84246400945f430794d5e7 (patch)
treeead3dd3a105253decb59437672f32954d44985c0 /include/world.hpp
parent174bcd3a415c21fc2c59a3af1b6333faa78b37d0 (diff)
CAT
Diffstat (limited to 'include/world.hpp')
-rw-r--r--include/world.hpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/world.hpp b/include/world.hpp
index b99e9ab..9566184 100644
--- a/include/world.hpp
+++ b/include/world.hpp
@@ -182,6 +182,8 @@ public:
// gets the nearest interactable entity to the given one
Entity *getNearInteractable(Entity &e);
+ Mob *getNearMob(Entity &e);
+
// gets the coordinates of the `index`th structure
vec2 getStructurePos(int index);
@@ -213,8 +215,8 @@ public:
std::string getToRight(void) const;
// attempts to enter the left/right adjacent world, returning either that world or this
- World *goWorldLeft(Player *p);
- World *goWorldRight(Player *p);
+ std::pair<World *, vec2> goWorldLeft(Player *p);
+ std::pair<World *, vec2> goWorldRight(Player *p);
// attempts to move an NPC to the left adjacent world, returning true on success
bool goWorldLeft(NPC *e);