18 lines
304 B
Objective-C
18 lines
304 B
Objective-C
//
|
|
// main.m
|
|
// GodEngine
|
|
//
|
|
// Created by Saturneric on 17/1/25.
|
|
// Copyright © 2017年 Bakantu Eric. All rights reserved.
|
|
//
|
|
|
|
#import "Engine.h"
|
|
|
|
int main(int argc, const char * argv[]) {
|
|
@autoreleasepool {
|
|
// insert code here...
|
|
NSLog(@"Hello, World!");
|
|
}
|
|
return 0;
|
|
}
|