Advertisement
Guest User

Untitled

a guest
Jan 11th, 2013
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.20 KB | None | 0 0
  1. #ifndef EDGE_DIRECTOR_H_INCLUDED
  2. #define EDGE_DIRECTOR_H_INCLUDED
  3.  
  4. class IScene;
  5.  
  6. namespace EDGE
  7. {
  8.     class Director
  9.     {
  10.     public:
  11.         Director();
  12.         void createNewScene(IScene* scene);
  13.     };
  14. }
  15.  
  16. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement