mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 05:31:01 +00:00 
			
		
		
		
	
		
			
	
	
		
			23 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			Mathematica
		
	
	
	
	
	
		
		
			
		
	
	
			23 lines
		
	
	
	
		
			440 B
		
	
	
	
		
			Mathematica
		
	
	
	
	
	
|   | #import <UIKit/UIKit.h>
 | ||
|  | #import "app_delegate.h"
 | ||
|  | #include <stdio.h>
 | ||
|  | 
 | ||
|  | int gargc;
 | ||
|  | char** gargv;
 | ||
|  | 
 | ||
|  | int main(int argc, char *argv[])
 | ||
|  | {
 | ||
|  | 	printf("*********** main.m\n");
 | ||
|  | 	gargc = argc;
 | ||
|  | 	gargv = argv;
 | ||
|  | 
 | ||
|  | 	NSAutoreleasePool *pool = [NSAutoreleasePool new];
 | ||
|  | 	AppDelegate* app = [AppDelegate alloc];
 | ||
|  | 	printf("running app main\n");
 | ||
|  | 	UIApplicationMain(argc, argv, nil, @"AppDelegate");
 | ||
|  | 	printf("main done, pool release\n");
 | ||
|  | 	[pool release];
 | ||
|  | 	return 0;
 | ||
|  | }
 | ||
|  | 
 |