]> git.localhorst.tv Git - l2e.git/blobdiff - src/sdl/InitScreen.h
made application and battle state resizable
[l2e.git] / src / sdl / InitScreen.h
index ef0820fc30e65115a4f0716f15584b059daa93e7..5455a17675da1e87bd0bde032f1b60a952468976 100644 (file)
@@ -26,9 +26,12 @@ public:
        const SDL_Surface *Screen(void) const { return screen; };
 
        void Flip(void) { SDL_Flip(screen); };
+       SDL_Surface *Resize(int width, int height);
 
 private:
        SDL_Surface *screen;
+       int bpp;
+       Sint32 flags;
 
 };