mirror of
https://github.com/XITRIX/NXKit.git
synced 2026-05-30 11:46:52 +00:00
11 lines
230 B
C++
11 lines
230 B
C++
#pragma once
|
|
#include <memory>
|
|
#include <UIApplication.h>
|
|
|
|
namespace NXKit {
|
|
|
|
class UIApplicationDelegate;
|
|
int UIApplicationMain(const std::shared_ptr<UIApplicationDelegate>& appDelegate = new_shared<UIApplicationDelegate>());
|
|
|
|
}
|