Killing this shit for good.
authorchsieh <chester.developer@hotmail.com>
Tue, 17 May 2011 05:24:38 +0000 (22:24 -0700)
committerchsieh <chester.developer@hotmail.com>
Tue, 17 May 2011 05:24:38 +0000 (22:24 -0700)
Littlest/Game/GameMain.h [deleted file]
Littlest/Game/GameMain.m [deleted file]

diff --git a/Littlest/Game/GameMain.h b/Littlest/Game/GameMain.h
deleted file mode 100644 (file)
index 1c2c6d9..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-//  GameMain.h
-//  Littlest
-//
-//  Created by Doris Chen on 4/26/11.
-//  Copyright 2011 __MyCompanyName__. All rights reserved.
-//
-
-#import <Foundation/Foundation.h>
-
-@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 (file)
index 7807dd0..0000000
+++ /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 <UIKit/UIKit.h>
-
-@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