Addsy

ai_snake.hpp

Apr 13th, 2015
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.17 KB | None | 0 0
  1. #if !defined AI_SNAKE_HPP
  2. #define AI_SNAKE_HPP
  3.  
  4. #include "snake.hpp"
  5.  
  6. class AISnake : public Snake {
  7. public:
  8.     void move() override;
  9.     };
  10.  
  11. #endif //AI_SNAKE_HPP
Advertisement
Add Comment
Please, Sign In to add comment