#include "Tactility/app/App.h" #include namespace tt::app { LaunchId start(const std::string& id, std::shared_ptr _Nullable parameters) { return service::loader::startApp(id, std::move(parameters)); } void stop() { service::loader::stopApp(); } std::shared_ptr _Nullable getCurrentAppContext() { return service::loader::getCurrentAppContext(); } std::shared_ptr _Nullable getCurrentApp() { return service::loader::getCurrentApp(); } }