Guest User

Untitled

a guest
Apr 20th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. #ifndef _CAPP_H_
  2. #define _CAPP_H_
  3.  
  4. #include <SDL.h>
  5.  
  6. #include "CSurface.h"
  7.  
  8. class CApp {
  9. private:
  10. bool Running;
  11.  
  12. SDL_Surface* Surf_Display;
  13.  
  14. SDL_Surface* Surf_Test;
  15.  
  16. public:
  17. CApp();
  18.  
  19. int OnExecute();
  20.  
  21. public:
  22. bool OnInit();
  23.  
  24. void OnEvent(SDL_Event* Event);
  25.  
  26. void OnLoop();
  27.  
  28. void OnRender();
  29.  
  30. void OnCleanup();
  31. };
  32.  
  33. #endif
Add Comment
Please, Sign In to add comment