bleck, reverting

This commit is contained in:
2015-08-22 06:44:24 -07:00
parent 56c4f158fc
commit 68aa5ac3e2
6 changed files with 27 additions and 18 deletions

View File

@@ -2,6 +2,7 @@
#include <SFML/Graphics.hpp>
#include <stack>
#include "Map.h"
#include "Pather.h"
class Explorer {
public:
@@ -13,8 +14,9 @@ private:
sf::Color color;
sf::Vector2i position;
Map* map;
Pather* pather;
std::stack<int> movement_stack;
std::deque<int> movement_stack;
bool move();
bool plan(sf::Vector2i destination_);
};