tobkit/example/source/main.cpp
2024-07-26 02:48:24 +01:00

13 lines
125 B
C++

#include <nds.h>
#include "myapp.h"
MyApp *myapp;
int main(void)
{
myapp = new MyApp();
myapp->mainLoop();
return 0;
}