Line | |
---|
1 | // |
---|
2 | // Monsterz |
---|
3 | // |
---|
4 | // Copyright: (c) 2005-2011 Sam Hocevar <sam@hocevar.net> |
---|
5 | // This program is free software; you can redistribute it and/or |
---|
6 | // modify it under the terms of the Do What The Fuck You Want To |
---|
7 | // Public License, Version 2, as published by Sam Hocevar. See |
---|
8 | // http://sam.zoy.org/projects/COPYING.WTFPL for more details. |
---|
9 | // |
---|
10 | |
---|
11 | #import <UIKit/UIKit.h> |
---|
12 | |
---|
13 | int main(int argc, char *argv[]) |
---|
14 | { |
---|
15 | NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; |
---|
16 | int retVal = UIApplicationMain(argc, argv, nil, nil); |
---|
17 | [pool release]; |
---|
18 | return retVal; |
---|
19 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.