mirror of
https://github.com/chocolate-doom/launcher.git
synced 2024-11-22 12:41:03 +00:00
59587038c7
configured, and add initial code to build command line. Subversion-branch: /launcher Subversion-revision: 1754
16 lines
258 B
Objective-C
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
|
|
|