forked from atomton/ATMHud
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.m
29 lines (27 loc) · 862 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
/*
* main.m
* ATMHud
*
* Created by Marcel Müller on 2011-03-01.
* Copyright (c) 2010-2011, Marcel Müller (atomcraft)
* Copyright (c) 2012-2014, David Hoerl
* All rights reserved.
*
* This sample project uses the sound
* Hard pop.wav http://www.freesound.org/samplesViewSingle.php?id=108616
* by
* juskiddink http://www.freesound.org/usersViewSingle.php?id=649468
* licensed under
* Creative Commons Sampling Plus 1.0 License http://creativecommons.org/licenses/sampling+/1.0/
*
* The two icons "11-x.png" and "19-check.png" are taken from the Glyphish icon set,
* with kind permission of Joseph Wain.
* You can get them here: http://glyphish.com/
*/
#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
@autoreleasepool {
int retVal = UIApplicationMain(argc, argv, nil, nil);
return retVal;
}
}