ResKnife/NovaTools/colr/ColrWindowController.m

19 lines
282 B
Mathematica
Raw Normal View History

#import "ColrWindowController.h"
@implementation ColrWindowController
2002-04-27 18:17:47 +00:00
- (id)initWithResource:(id)newResource
{
self = [self initWithWindowNibName:@"colr"];
if( !self ) return nil;
return self;
}
- (void)windowDidLoad
{
[super windowDidLoad];
[self showWindow:self];
}
@end