Add support for launching the game.

This commit is contained in:
Paul Chote
2010-11-16 10:55:36 +13:00
parent 5cbfc45819
commit 16dd07bab3
11 changed files with 211 additions and 7 deletions

View File

@@ -9,10 +9,13 @@
#import <Cocoa/Cocoa.h>
@class ModEntry;
@class GameInstall;
@interface Controller : NSObject
{
ModEntry *sidebarItems;
GameInstall *game;
IBOutlet NSOutlineView *outlineView;
}
- (ModEntry *)modTree;
- (IBAction)launchGame:(id)sender;
@end