mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-10 10:21:48 +00:00
17 lines
316 B
Mathematica
17 lines
316 B
Mathematica
|
//
|
||
|
// main.m
|
||
|
// WiiMoteOpenGLDemo
|
||
|
//
|
||
|
// Created by Matthias Ringwald on 8/2/09.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
|
||
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
||
|
int retVal = UIApplicationMain(argc, argv, nil, nil);
|
||
|
[pool release];
|
||
|
return retVal;
|
||
|
}
|