/*
   loadimg - Function to load an image from file using SDL_image
   Copyright (C) 2002 John Ericson
*/

#ifndef LOADIMG_HEADER
#define LOADIMG_HEADER

#include <SDL.h>
#include <SDL_image.h>

#include "bool.h"

SDL_Surface *loadimage(char *datafile, bool transparent);

#endif /* LOADIMG_HEADER */