Skip to content

Instantly share code, notes, and snippets.

@Nub
Created October 20, 2011 03:33
Show Gist options
  • Select an option

  • Save Nub/1300353 to your computer and use it in GitHub Desktop.

Select an option

Save Nub/1300353 to your computer and use it in GitHub Desktop.
//
// 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