Source/main-iPhone.m
author Jens Alfke <jens@mooseyard.com>
Thu Jul 31 20:01:26 2008 -0700 (2008-07-31)
changeset 24 db8640a38faf
permissions -rwxr-xr-x
* Put the spots in the right place in 13x13 and 19x19 boards.
* Fixed some front/back layering issues in Grid.
jens@1
     1
//
jens@1
     2
//  main.m
jens@1
     3
//  GGB-iPhone
jens@1
     4
//
jens@1
     5
//  Created by Jens Alfke on 3/7/08.
jens@1
     6
//  Copyright __MyCompanyName__ 2008. All rights reserved.
jens@1
     7
//
jens@1
     8
jens@1
     9
#import <UIKit/UIKit.h>
jens@1
    10
jens@1
    11
int main(int argc, char *argv[])
jens@1
    12
{
jens@1
    13
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
jens@1
    14
    int retVal = UIApplicationMain(argc, argv, nil, @"GGB_iPhoneAppDelegate");
jens@1
    15
    [pool release];
jens@1
    16
    return retVal;
jens@1
    17
}