mirror of
https://github.com/joel16/NX-Shell.git
synced 2024-11-23 03:39:49 +00:00
10 lines
150 B
C++
10 lines
150 B
C++
#pragma once
|
|
|
|
namespace GUI {
|
|
bool Init(void);
|
|
bool SwapBuffers(void);
|
|
bool Loop(u64 &key);
|
|
void Render(void);
|
|
void Exit(void);
|
|
}
|