mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 01:34:13 -05:00
15 lines
217 B
C++
15 lines
217 B
C++
#include "JKSV.hpp"
|
|
#include "config.hpp"
|
|
#include <switch.h>
|
|
|
|
int main()
|
|
{
|
|
JKSV jksv{};
|
|
while (appletMainLoop() && jksv.is_running())
|
|
{
|
|
jksv.update();
|
|
jksv.render();
|
|
}
|
|
return 0;
|
|
}
|