mirror of
https://github.com/nickshanks/ResKnife.git
synced 2025-01-03 04:31:27 +00:00
19 lines
309 B
Objective-C
19 lines
309 B
Objective-C
#import "DescWindowController.h"
|
|
|
|
@implementation DescWindowController
|
|
|
|
- (id)initWithResource:(id <ResKnifeResourceProtocol>)newResource
|
|
{
|
|
self = [self initWithWindowNibName:@"desc"];
|
|
if( !self ) return nil;
|
|
return self;
|
|
}
|
|
|
|
- (void)windowDidLoad
|
|
{
|
|
[super windowDidLoad];
|
|
[self showWindow:self];
|
|
}
|
|
|
|
@end
|