-
Notifications
You must be signed in to change notification settings - Fork 94
/
main.m
34 lines (29 loc) · 929 Bytes
/
main.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* This file is part of Gorillas.
*
* Gorillas is open software: you can use or modify it under the
* terms of the Java Research License or optionally a more
* permissive Commercial License.
*
* Gorillas is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* You should have received a copy of the Java Research License
* along with Gorillas in the file named 'COPYING'.
* If not, see <http://stuff.lhunath.com/COPYING>.
*/
//
// main.m
// Gorillas
//
// Created by Maarten Billemont on 18/10/08.
// Copyright, lhunath (Maarten Billemont) 2008. All rights reserved.
//
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
@autoreleasepool {
int retVal = UIApplicationMain(argc, argv, nil, @"GorillasAppDelegate");
return retVal;
}
}