mirror of
https://github.com/cwyark/ameba-sdk-gcc-make.git
synced 2024-11-23 06:24:18 +00:00
18 lines
340 B
Objective-C
Executable file
18 lines
340 B
Objective-C
Executable file
//
|
|
// main.m
|
|
// SimpleConfig
|
|
//
|
|
// Created by realtek on 6/16/14.
|
|
// Copyright (c) 2014 Realtek. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import "RTKAppDelegate.h"
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([RTKAppDelegate class]));
|
|
}
|
|
}
|