// // HighscoreListController.h // Cart Collect // // Created by iD Student Account on 7/20/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import @interface HighscoreListController : UITableViewController { UINavigationBar* navigationBar; UIToolbar* toolbar; UINavigationItem* myNavigationItem; NSArray* localHighscores; NSArray* globalHighscores; BOOL showGlobal; BOOL loadingGlobal; UIView* loadingView; UIActivityIndicatorView* activity; UILabel* statusText; UITableView* tableView; UISegmentedControl* areaControl; UISegmentedControl* modeControl; } - (void)back; - (void)switchLists:(id)sender; - (void)switchGameMode:(id)sender; - (void)scoreRequestOk:(id)sender; - (void)scoreRequestFail:(id)sender; @end