JKSV/source/main.cpp
2025-09-09 20:47:48 -04:00

15 lines
224 B
C++

#include "JKSV.hpp"
#include <switch.h>
int main(int argc, const char *argv[])
{
JKSV jksv{};
while (appletMainLoop() && jksv.is_running())
{
jksv.update();
jksv.render();
}
return 0;
}