mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-12-21 11:29:31 +00:00
19 lines
282 B
Objective-C
19 lines
282 B
Objective-C
#import "ColrWindowController.h"
|
|
|
|
@implementation ColrWindowController
|
|
|
|
- (id)initWithResource:(id)newResource
|
|
{
|
|
self = [self initWithWindowNibName:@"colr"];
|
|
if( !self ) return nil;
|
|
return self;
|
|
}
|
|
|
|
- (void)windowDidLoad
|
|
{
|
|
[super windowDidLoad];
|
|
[self showWindow:self];
|
|
}
|
|
|
|
@end
|