Expose the package downloading to js. Todo: cancel support, status callbacks.

This commit is contained in:
Paul Chote
2010-11-19 11:17:47 +13:00
parent cb93955cc5
commit c3521a2490
6 changed files with 83 additions and 18 deletions

View File

@@ -11,13 +11,14 @@
@class Mod;
@interface GameInstall : NSObject {
NSURL *gameURL;
NSMutableDictionary *downloadTasks;
}
@property(readonly) NSURL *gameURL;
-(id)initWithURL:(NSURL *)path;
-(void)launchMod:(NSString *)mod;
- (NSString *)runUtilityQuery:(NSString *)arg;
- (void)runUtilityQuery:(NSString *)arg handleOutput:(id)obj withMethod:(SEL)sel;
- (NSArray *)installedMods;
- (NSDictionary *)infoForMods:(NSArray *)mods;
- (BOOL)downloadUrl:(NSString *)url toPath:(NSString *)filename withId:(NSString *)key;
@end