#ifndef VIEWPORT_H #define VIEWPORT_H #include struct viewport { int x; int y; int w; int h; SDL_Surface *screen; }; struct viewport *init_viewport(int width, int height, int bpp); #endif