Some-Shooter-Mooter/source/mainfunctions.h
2014-04-11 00:10:47 +03:00

13 lines
296 B
C++

#ifndef MAINFUNCTIONS_H_
#define MAINFUNCTIONS_H_
#include "SDL/SDL.h"
#include "SDL/SDL_image.h"
#include <string>
SDL_Surface *load_image(std::string filename, bool alpha=false);
void apply_surface(int x, int y, SDL_Surface* source, SDL_Surface* destination, SDL_Rect* clip = NULL);
#endif