ResKnife/NovaTools/misn/MisnWindowController.m

19 lines
309 B
Objective-C

#import "MisnWindowController.h"
@implementation MisnWindowController
- (id)initWithResource:(id <ResKnifeResourceProtocol>)newResource
{
self = [self initWithWindowNibName:@"misn"];
if( !self ) return nil;
return self;
}
- (void)windowDidLoad
{
[super windowDidLoad];
[self showWindow:self];
}
@end