God-Engine/main.m

18 lines
304 B
Mathematica
Raw Normal View History

2020-08-31 16:11:47 +00:00
//
// 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;
}