mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 01:34:13 -05:00
19 lines
364 B
C++
19 lines
364 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 user might have placed it.
|
|
cmdargs::store(argc, argv);
|
|
|
|
JKSV jksv{};
|
|
while (jksv.is_running())
|
|
{
|
|
jksv.update();
|
|
jksv.render();
|
|
}
|
|
return 0;
|
|
}
|