mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
10 lines
183 B
C++
10 lines
183 B
C++
#include "apps_container.h"
|
|
|
|
AppsContainer container;
|
|
|
|
void ion_app() {
|
|
container.switchTo(container.onBoardingAppDescriptor());
|
|
container.run();
|
|
container.switchTo(nullptr);
|
|
}
|