diff options
Diffstat (limited to 'Classes/HighscoreListController.h')
-rwxr-xr-x | Classes/HighscoreListController.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Classes/HighscoreListController.h b/Classes/HighscoreListController.h new file mode 100755 index 0000000..f673609 --- /dev/null +++ b/Classes/HighscoreListController.h | |||
@@ -0,0 +1,32 @@ | |||
1 | // | ||
2 | // HighscoreListController.h | ||
3 | // Cart Collect | ||
4 | // | ||
5 | // Created by iD Student Account on 7/20/11. | ||
6 | // Copyright 2011 __MyCompanyName__. All rights reserved. | ||
7 | // | ||
8 | |||
9 | #import <UIKit/UIKit.h> | ||
10 | #import "Highscore.h" | ||
11 | #import "cocoslive.h" | ||
12 | #import "RootViewController.h" | ||
13 | |||
14 | @interface HighscoreListController : UITableViewController { | ||
15 | UINavigationBar* navigationBar; | ||
16 | UINavigationItem* myNavigationItem; | ||
17 | NSArray* localHighscores; | ||
18 | NSArray* globalHighscores; | ||
19 | BOOL showGlobal; | ||
20 | BOOL loadingGlobal; | ||
21 | UIView* loadingView; | ||
22 | UIActivityIndicatorView* activity; | ||
23 | UILabel* statusText; | ||
24 | UITableView* tableView; | ||
25 | } | ||
26 | |||
27 | - (void)back; | ||
28 | - (void)switchLists:(id)sender; | ||
29 | - (void)scoreRequestOk:(id)sender; | ||
30 | - (void)scoreRequestFail:(id)sender; | ||
31 | |||
32 | @end | ||