Files
OpenRA/OpenRA.Launcher.Mac/GameInstall.h
2010-11-25 22:51:24 +13:00

19 lines
283 B
Objective-C

//
// 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