mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-07-14 15:11:58 -05:00
16 lines
238 B
C++
16 lines
238 B
C++
#include "Config.hpp"
|
|
#include "JKSV.hpp"
|
|
#include <switch.h>
|
|
|
|
int main(void)
|
|
{
|
|
JKSV Jksv;
|
|
while (appletMainLoop() && Jksv.IsRunning())
|
|
{
|
|
Jksv.Update();
|
|
Jksv.Render();
|
|
}
|
|
Config::Save();
|
|
return 0;
|
|
}
|