snakeplusplus/src/botinterface.hpp

13 lines
252 B
C++
Raw Normal View History

#ifndef BOTINTERFACE_HPP
#define BOTINTERFACE_HPP
#include "common.hpp"
#include <SFML/System/Vector2.hpp>
namespace snakeplusplus
{
2023-08-19 23:32:53 -05:00
PlayerDirection GetBotInput(const sf::Vector2f* snakeHeadLocation, const sf::Vector2f* foodLocation);
}
#endif