NX-Shell/include/gui.hpp

10 lines
150 B
C++
Raw Permalink Normal View History

#pragma once
2020-08-03 22:10:06 +00:00
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
}