Advertisement
Suby

functions.h

Apr 27th, 2012
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #ifndef FUNCTIONS_H
  2. #define FUNCTIONS_H
  3.  
  4. #include "SDL.h"
  5. #include "SDL_image.h"
  6. #include <string>
  7. #include "classes.h"
  8.  
  9. SDL_Surface *load_image( std::string filename );
  10.  
  11. void apply_surface( int x, int y, SDL_Surface* source, SDL_Surface* destination, SDL_Rect* clip = NULL );
  12.  
  13. bool init();
  14.  
  15. bool load_files();
  16.  
  17. void clean_up();
  18.  
  19. void CheckForLine(Block *aBlock, int maxsize, int &linesclearedint, int &scorevalue);
  20.  
  21. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement