mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-29 11:39:58 +02:00
24 lines
501 B
C++
24 lines
501 B
C++
#include <ion.h>
|
|
#include "display.h"
|
|
#include "events_keyboard.h"
|
|
#include "../../../apps/global_preferences.h"
|
|
|
|
extern "C" {
|
|
const char * IonSoftwareVersion();
|
|
const char * IonPatchLevel();
|
|
}
|
|
|
|
const char * IonSoftwareVersion() { return Ion::softwareVersion(); }
|
|
const char * IonPatchLevel() { return Ion::patchLevel(); }
|
|
|
|
int main(int argc, char * argv[]) {
|
|
Ion::Display::Emscripten::init();
|
|
Ion::Events::Emscripten::init();
|
|
|
|
ion_main(argc, argv);
|
|
return 0;
|
|
}
|
|
|
|
void Ion::msleep(long ms) {
|
|
}
|