sgl

view src/ios_init.m @ 37:b3374e30361c

xcode project for uikit version, untested
author John Tsiombikas <nuclear@member.fsf.org>
date Wed, 27 Jun 2012 05:15:50 +0300
parents
children
line source
1 #import "ios_init.h"
3 @implementation sgl
5 - (id)init
6 {
7 self = [super init];
8 if(self) {
9 // Initialization code here.
10 }
12 return self;
13 }
15 @end
17 void sgl_register_uikit(void);
19 void sgl_modules_init(void)
20 {
21 sgl_register_uikit();
22 }