mirror of
https://github.com/chocolate-doom/launcher.git
synced 2024-11-25 13:51:28 +00:00
59587038c7
configured, and add initial code to build command line. Subversion-branch: /launcher Subversion-revision: 1754
21 lines
313 B
Objective-C
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
|
|
|