From: chsieh Date: Tue, 17 May 2011 05:24:38 +0000 (-0700) Subject: Killing this shit for good. X-Git-Url: http://git.less.ly:3516/?a=commitdiff_plain;h=1e671857c481e3e18aaa0ccf6d163f5809edaa3b;p=tanks-ios.git Killing this shit for good. --- diff --git a/Littlest/Game/GameMain.h b/Littlest/Game/GameMain.h deleted file mode 100644 index 1c2c6d9..0000000 --- a/Littlest/Game/GameMain.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// GameMain.h -// Littlest -// -// Created by Doris Chen on 4/26/11. -// Copyright 2011 __MyCompanyName__. All rights reserved. -// - -#import - -@class RootViewController; - -@interface GameMain : NSObject { - UIWindow* window; - RootViewController* viewController; -} - -@property (nonatomic, retain) UIWindow *window; - -+(GameMain*) createGameMain; -+(void) runWithWindow:(id)uiWindowId; - --(void) initialize:(UIWindow*)uiWindow; --(void) run; - -@end diff --git a/Littlest/Game/GameMain.m b/Littlest/Game/GameMain.m deleted file mode 100644 index 7807dd0..0000000 --- a/Littlest/Game/GameMain.m +++ /dev/null @@ -1,41 +0,0 @@ -// -// GameMain.m -// Littlest -// -// Created by Doris Chen on 4/26/11. -// Copyright 2011 __MyCompanyName__. All rights reserved. -// - -#import "GameMain.h" -#import - -@implementation GameMain - -@synthesize window; - -+(GameMain*) createGameMain { - if ( (self = [super init]) ) - { - return [[GameMain alloc] init]; - } - return Nil; -} - -+(void) runWithWindow:(id)uiWindowId { - GameMain* game = [GameMain createGameMain]; - [game initialize: (UIWindow*)uiWindowId]; - [game run]; -} - --(void) initialize:(UIWindow *)uiWindow { - window = uiWindow; -} - --(void) run { - bool quit = false; - while (!quit) { - - } -} - -@end