JKSV/source/main.cpp
2025-09-30 15:51:54 -04:00

19 lines
363 B
C++

#include "JKSV.hpp"
#include "cmdargs.hpp"
#include <switch.h>
int main(int argc, const char *argv[])
{
// Store the pointers here so JKSV can update itself from where ever the use might have placed it.
cmdargs::store(argc, argv);
JKSV jksv{};
while (jksv.is_running())
{
jksv.update();
jksv.render();
}
return 0;
}