19 lines
249 B
C++
19 lines
249 B
C++
#ifndef LAUNCHER_GUI_H
|
|
#define LAUNCHER_GUI_H
|
|
|
|
#include <string>
|
|
#include "SDL2/SDL.h"
|
|
|
|
#define GUI_MODE_BROWSER 0
|
|
#define GUI_MODE_IME 1
|
|
|
|
extern bool done;
|
|
extern int gui_mode;
|
|
|
|
namespace GUI
|
|
{
|
|
int RenderLoop(SDL_Renderer *renderer);
|
|
}
|
|
|
|
#endif
|