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

@@ -0,0 +1,18 @@
//
// GameInstall.h
// OpenRA
//
// Created by Paul Chote on 15/11/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
@interface GameInstall : NSObject {
NSString *gamePath;
}
-(id)initWithPath:(NSString *)path;
-(void)launchGame;
@end