Created
October 20, 2011 03:33
-
-
Save Nub/1300353 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // main.m | |
| // Sound Effects Test | |
| // | |
| // Created by Zachry Thayer on 10/16/11. | |
| // Copyright (c) 2011 Zachry Thayer. All rights reserved. | |
| // | |
| #import <UIKit/UIKit.h> | |
| #import "SFXAppDelegate.h" | |
| int main(int argc, char *argv[]) | |
| { | |
| NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; | |
| int ret = UIApplicationMain(argc, argv, nil, NSStringFromClass([SFXAppDelegate class])); | |
| [pool drain]; | |
| return ret; | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment