#ifndef JES_GUI_H #define JES_GUI_H #include "jes/Ref.h" #include namespace jes { class GUI { public: GUI(); void run(); protected: SDL_Window * m_window; }; typedef Ref GUIRef; } #endif