mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-04 18:29:41 +01:00
2af396fb30
That's how it should be done, because the SDL headers aren't going to be installed in this repository. The game was a bit inconsistent before but now it isn't anymore.
35 lines
795 B
C++
35 lines
795 B
C++
#ifndef GRAPHICSRESOURCES_H
|
|
#define GRAPHICSRESOURCES_H
|
|
|
|
#include <SDL.h>
|
|
|
|
class GraphicsResources
|
|
{
|
|
public:
|
|
void init(void);
|
|
void destroy(void);
|
|
|
|
SDL_Surface* im_tiles;
|
|
SDL_Surface* im_tiles2;
|
|
SDL_Surface* im_tiles3;
|
|
SDL_Surface* im_entcolours;
|
|
SDL_Surface* im_sprites;
|
|
SDL_Surface* im_flipsprites;
|
|
SDL_Surface* im_bfont;
|
|
SDL_Surface* im_teleporter;
|
|
SDL_Surface* im_image0;
|
|
SDL_Surface* im_image1;
|
|
SDL_Surface* im_image2;
|
|
SDL_Surface* im_image3;
|
|
SDL_Surface* im_image4;
|
|
SDL_Surface* im_image5;
|
|
SDL_Surface* im_image6;
|
|
SDL_Surface* im_image7;
|
|
SDL_Surface* im_image8;
|
|
SDL_Surface* im_image9;
|
|
SDL_Surface* im_image10;
|
|
SDL_Surface* im_image11;
|
|
SDL_Surface* im_image12;
|
|
};
|
|
|
|
#endif /* GRAPHICSRESOURCES_H */
|