NX-Shell/include/gui.h

13 lines
191 B
C
Raw Normal View History

2020-08-03 22:10:06 +00:00
#ifndef NX_SHELL_GUI_H
#define NX_SHELL_GUI_H
namespace GUI {
2021-09-12 21:08:02 +00:00
bool Init(void);
bool SwapBuffers(void);
bool Loop(u64 &key);
2021-09-12 21:08:02 +00:00
void Render(void);
void Exit(void);
2020-08-03 22:10:06 +00:00
}
#endif