Source/main-iPhone.m
author Jens Alfke <jens@mooseyard.com>
Mon Jul 21 17:32:21 2008 -0700 (2008-07-21)
changeset 21 2eb229411d73
permissions -rwxr-xr-x
* Added API to Stack for removing bits.
* GoGame correctly saves/restores number of captured pieces.
* Improved positioning of captured-piece Stacks in GoGame.
* New Go piece icons.
* Added "Warn" function to GGBUtils.
     1 //
     2 //  main.m
     3 //  GGB-iPhone
     4 //
     5 //  Created by Jens Alfke on 3/7/08.
     6 //  Copyright __MyCompanyName__ 2008. All rights reserved.
     7 //
     8 
     9 #import <UIKit/UIKit.h>
    10 
    11 int main(int argc, char *argv[])
    12 {
    13     NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    14     int retVal = UIApplicationMain(argc, argv, nil, @"GGB_iPhoneAppDelegate");
    15     [pool release];
    16     return retVal;
    17 }