Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #ifndef RACE_H
  2. #define RACE_H
  3. // Race.h
  4.  
  5. #include "Path.h"
  6. #include "Tortoise.h"
  7. #include "Hare.h"
  8.  
  9. class Race {
  10. public:
  11. Race();
  12. bool isOver();
  13. void update();
  14. private:
  15. Path path;
  16. Tortosie timmy;
  17. Hare harold;
  18. bool over;
  19.  
  20. };
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement