Add a WebView in preparation for the page info. Refactor SidebarEntry out of Mod. Add an "Other" category with links for support/credits+legal.

This commit is contained in:
Paul Chote
2010-11-16 17:02:34 +13:00
parent 7271dd5248
commit de7668e8ff
11 changed files with 334 additions and 162 deletions

View File

@@ -8,14 +8,15 @@
#import <Cocoa/Cocoa.h>
@class ModEntry;
@class Mod;
@interface GameInstall : NSObject {
NSString *gamePath;
NSMutableString *utilityBuffer;
}
-(id)initWithPath:(NSString *)path;
- (ModEntry *)modTree;
-(void)launchGame;
- (void)runUtilityApp:(NSString *)arg handleOutput:(id)obj withMethod:(SEL)sel;
- (NSArray *)installedMods;
- (NSArray *)infoForMods:(NSArray *)mods;
@end