/* $Id: wopbackground.hpp,v 1.5 2005/06/28 13:55:26 chfreund Exp $ */ #ifndef _WOPBACKGROUND_HPP_ #define _WOPBACKGROUND_HPP_ #include class WopBackground { private: SDL_Surface* m_graphic; public: WopBackground( int width, int height, const char* filename, SDL_PixelFormat* format ); ~WopBackground(); SDL_Surface* getGraphic() { return m_graphic; } }; #endif // _WOPBACKGROUND_HPP_