Yeah, this really isn't wanting to work. Gonna need to probably redo everything

This commit is contained in:
2015-08-22 10:44:05 -07:00
parent 47fee51b08
commit 17207d8294
9 changed files with 226 additions and 63 deletions

View File

@@ -9,13 +9,14 @@ public:
~Explorer();
sf::Vector2i getPosition();
sf::Color getColor();
void setDestination(sf::Vector2i destination_);
bool move();
private:
sf::Color color;
sf::Vector2i position;
Map* map;
std::stack<int> movement_stack;
bool move();
std::deque<int> movement_stack;
bool plan(sf::Vector2i destination_);
};