mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-22 02:29:56 +00:00
19 lines
309 B
Objective-C
19 lines
309 B
Objective-C
#import "ShipWindowController.h"
|
|
|
|
@implementation ShipWindowController
|
|
|
|
- (id)initWithResource:(id <ResKnifeResourceProtocol>)newResource
|
|
{
|
|
self = [self initWithWindowNibName:@"ship"];
|
|
if( !self ) return nil;
|
|
return self;
|
|
}
|
|
|
|
- (void)windowDidLoad
|
|
{
|
|
[super windowDidLoad];
|
|
[self showWindow:self];
|
|
}
|
|
|
|
@end
|