22 lines
252 B
C++
22 lines
252 B
C++
#ifndef JES_GUI_H
|
|
#define JES_GUI_H
|
|
|
|
#include "jes/Ref.h"
|
|
#include <SDL.h>
|
|
|
|
namespace jes
|
|
{
|
|
class GUI
|
|
{
|
|
public:
|
|
GUI();
|
|
void run();
|
|
protected:
|
|
SDL_Window * m_window;
|
|
};
|
|
|
|
typedef Ref<GUI> GUIRef;
|
|
}
|
|
|
|
#endif
|