Skip to content

Commit

Permalink
migrated to github
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaspars committed Jun 21, 2010
0 parents commit cda95fb
Show file tree
Hide file tree
Showing 325 changed files with 51,969 additions and 0 deletions.
60 changes: 60 additions & 0 deletions Classes/AppController.h
@@ -0,0 +1,60 @@
/*
Copyright 2009 Kaspars Dancis
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

#import "GameOver.h"
#import "MainMenu.h"
#import "Game.h"
#import "Link.h"
#import "State.h"
#import "Opponent.h"
#import "EnterName.h"
#import "TwiztLeague.h"
#import "LeaguePlayers.h"
#import "LeagueLeaderboard.h"

@interface AppController : NSObject
<
UIApplicationDelegate,
GameDelegate,
GameOverDelegate,
MainMenuDelegate,
LinkDelegate,
OpponentDelegate,
EnterNameDelegate,
LeaguePlayersDelegate,
LeagueLeaderboardDelegate
>
{
UIWindow *window;
Scene *scene;
Layer *currentLayer;
Link *link;
State *state;
TwiztLeague *league;
int gameState;
int opponent;

bool youWin;
int score;
NSString *opponentName;
NSString *opponentID;
}

- (void) mainMenu;
- (void) enterName;

@end

0 comments on commit cda95fb

Please sign in to comment.