jes-ruby/src/gui/GUI.h
2014-06-10 21:58:23 -04:00

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