Unuk/src/libUnuk/ImageLoader.h
Rtch90 c100118d72 -- [Add] Added an image loader, we shall be able to blit to screen next.
-- [Add] Added rects so we can play on the stack.
2011-11-09 00:21:30 +00:00

12 lines
250 B
C

#ifndef _IMAGELOADER_H_
#define _IMAGELOADER_H_
#include <SDL/SDL.h>
#include <SDL/SDL_image.h>
#include "../Unuk/Globals.h"
#include "Debug.h"
SDL_Surface* LoadImage(const char* filename);
SDL_Surface* LoadImageAlpha(const char* filename);
#endif