mirror of
https://github.com/chocolate-doom/launcher.git
synced 2024-11-22 12:41:03 +00:00
894287c1c7
Subversion-branch: /launcher Subversion-revision: 1756
18 lines
302 B
Objective-C
18 lines
302 B
Objective-C
/* All Rights reserved */
|
|
|
|
#include <AppKit/AppKit.h>
|
|
#include "IWADController.h"
|
|
|
|
@interface LauncherManager : NSObject
|
|
{
|
|
id commandLineArguments;
|
|
id packageLabel;
|
|
id launcherWindow;
|
|
IWADController *iwadController;
|
|
}
|
|
|
|
- (void) launch: (id)sender;
|
|
- (void) runSetup: (id)sender;
|
|
|
|
@end
|
|
|