Advertisement
Guest User

Untitled

a guest
Nov 29th, 2015
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. // Apple.hpp
  2.  
  3. #ifndef MYGAME_APPLE_HPP
  4. #define MYGAME_APPLE_HPP
  5.  
  6. #include "Element.hpp"
  7.  
  8. class Apple : public Element { ... };
  9.  
  10. #endif
  11.  
  12. ////////////////////////////////////////////////////////////////////////////////
  13.  
  14. // Game.hpp
  15.  
  16. #ifndef MYGAME_GAME_HPP
  17. #define MYGAME_GAME_HPP
  18.  
  19. class Game { ... Apple mApple; ... }
  20.  
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement