AOS_iOS_NRE_Sample/Nexacro17/iOS/nexacro17_iOS/nexacro17App/main.m

17 lines
348 B
Mathematica
Raw Normal View History

2023-09-18 15:40:22 +09:00
//
// main.m
// nexacro17App
//
// Created by on 2016. 11. 24..
// Copyright © 2016 com.tobesoft. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}