mirror of
https://github.com/ocornut/imgui.git
synced 2024-11-14 19:17:48 +01:00
14 lines
237 B
Mathematica
14 lines
237 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// imguiex
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "AppDelegate.h"
|
||
|
|
||
|
int main(int argc, char * argv[]) {
|
||
|
@autoreleasepool {
|
||
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
||
|
}
|
||
|
}
|