20 lines
340 B
Plaintext
20 lines
340 B
Plaintext
|
//
|
||
|
// main.m
|
||
|
// GenesisEngineIos
|
||
|
//
|
||
|
// Created by 宋 琦 on 13-6-26.
|
||
|
// Copyright (c) 2013年 webJet. 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]));
|
||
|
}
|
||
|
}
|