Guest User

Untitled

a guest
May 8th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.25 KB | None | 0 0
  1. #ifndef OBJECT_H_
  2. #define OBJECT_H_
  3.  
  4. class Scene; // forward declaration
  5.  
  6. namespace ff {
  7.  
  8. class Object {
  9. protected:
  10.     Scene* scene;
  11.  
  12. public:
  13.     friend class Scene;
  14.  
  15.     Object();
  16.     virtual ~Object();
  17.  
  18. };
  19.  
  20. } /* ff */
  21.  
  22. #endif
Advertisement
Add Comment
Please, Sign In to add comment