You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
279 B

#ifndef GRAPHICS_H
#define GRAPHICS_H
class Graphics
{
public:
Graphics();
~Graphics();
void init();
void terminate();
void resize(int width, int height);
void beginRender();
void endRender();
};
extern Graphics g_graphics;
#endif // GRAPHICS_H