mirror of
https://github.com/chocolate-doom/launcher.git
synced 2024-11-10 07:12:06 +00:00
24 lines
357 B
Mathematica
24 lines
357 B
Mathematica
|
/* All Rights reserved */
|
||
|
|
||
|
#include <AppKit/AppKit.h>
|
||
|
#include "IWADController.h"
|
||
|
|
||
|
@implementation IWADController
|
||
|
|
||
|
|
||
|
- (void) closeConfigWindow: (id)sender
|
||
|
{
|
||
|
[self->configWindow orderOut: sender];
|
||
|
}
|
||
|
|
||
|
|
||
|
- (void) openConfigWindow: (id)sender
|
||
|
{
|
||
|
if (![self->configWindow isVisible])
|
||
|
{
|
||
|
[self->configWindow makeKeyAndOrderFront: sender];
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@end
|