ResKnife/NovaTools/colr/ColrWindowController.m
2002-10-04 19:54:05 +00:00

19 lines
309 B
Objective-C

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