mirror of
https://github.com/AntonioND/tobkit.git
synced 2025-06-19 00:55:33 -04:00
13 lines
125 B
C++
13 lines
125 B
C++
#include <nds.h>
|
|
#include "myapp.h"
|
|
|
|
MyApp *myapp;
|
|
|
|
int main(void)
|
|
{
|
|
myapp = new MyApp();
|
|
myapp->mainLoop();
|
|
|
|
return 0;
|
|
}
|