mirror of https://github.com/bsnes-emu/bsnes.git
13 lines
183 B
C++
13 lines
183 B
C++
|
namespace phoenix {
|
||
|
|
||
|
struct pApplication {
|
||
|
static void run();
|
||
|
static bool pendingEvents();
|
||
|
static void processEvents();
|
||
|
static void quit();
|
||
|
|
||
|
static void initialize();
|
||
|
};
|
||
|
|
||
|
}
|