#ifndef BOTINTERFACE_HPP #define BOTINTERFACE_HPP #include "common.hpp" #include #include #include namespace snakeplusplus { class AISnake { public: std::stack path; AISnake(); void GetNewPath(const std::vector< std::vector >& gameBoard, const sf::Vector2f& source, const sf::Vector2f& boundaries); PlayerDirection GetInput(const sf::Vector2f* source); }; } #endif