snakeplusplus/src/botinterface.hpp
2023-08-19 23:32:53 -05:00

13 lines
252 B
C++
Executable File

#ifndef BOTINTERFACE_HPP
#define BOTINTERFACE_HPP
#include "common.hpp"
#include <SFML/System/Vector2.hpp>
namespace snakeplusplus
{
PlayerDirection GetBotInput(const sf::Vector2f* snakeHeadLocation, const sf::Vector2f* foodLocation);
}
#endif