mirror of
https://github.com/cwyark/ameba-sdk-gcc-make.git
synced 2024-11-23 06:24:18 +00:00
19 lines
340 B
Mathematica
19 lines
340 B
Mathematica
|
//
|
||
|
// 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]));
|
||
|
}
|
||
|
}
|