launcher/LauncherManager.h
Simon Howard 59587038c7 Populate drop-down IWAD selector based on which IWADs have been
configured, and add initial code to build command line.

Subversion-branch: /launcher
Subversion-revision: 1754
2009-12-25 19:31:48 +00:00

16 lines
258 B
Objective-C

/* All Rights reserved */
#include <AppKit/AppKit.h>
#include "IWADController.h"
@interface LauncherManager : NSObject
{
id commandLineArguments;
IWADController *iwadController;
}
- (void) launch: (id)sender;
- (void) runSetup: (id)sender;
@end