Guest User

Untitled

a guest
Apr 20th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. #ifdef _CSURFACE_H_
  2. #define _CSURFACE_H_
  3.  
  4. #include <SDL.h>
  5.  
  6. class CSurface {
  7. public:
  8. CSurface();
  9.  
  10. public:
  11. static SDL_Surface* OnLoad(char* File);
  12.  
  13. static bool OnDraw(SDL_Surface* Surf_Dest, SDL_Surface* Surf_Src, int X, int Y);
  14. };
  15.  
  16. #endif
Add Comment
Please, Sign In to add comment