Advertisement
Guest User

Untitled

a guest
Jan 11th, 2013
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.34 KB | None | 0 0
  1. #ifndef EDGE_IAPP_H_INCLUDED
  2. #define EDGE_IAPP_H_INCLUDED
  3.  
  4. #include <string>
  5. #include "Director.h"
  6.  
  7. namespace EDGE
  8. {
  9.     class IApp
  10.     {
  11.     public:
  12.         IApp(const std::string theTitle = "Basic Application");
  13.         virtual void initSceneFactory(void) = 0;
  14.  
  15.         Director* directorManager;
  16.  
  17.     private:
  18.         bool aRunning;
  19.     };
  20. }
  21.  
  22. #endif
  23. // Snopp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement