launcher/IWADController.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

21 lines
313 B
Objective-C

/* All Rights reserved */
#include <AppKit/AppKit.h>
@interface IWADController : NSObject
{
id chex;
id doom1;
id doom2;
id iwadSelector;
id configWindow;
id plutonia;
id tnt;
}
- (void) closeConfigWindow: (id)sender;
- (void) openConfigWindow: (id)sender;
- (NSString *) getIWADLocation;
@end