That was weird...

This commit is contained in:
2015-08-22 06:50:40 -07:00
parent 62771d70dd
commit d8a198bff9
15 changed files with 577 additions and 27 deletions

View File

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