ResKnife/NovaTools/desc/DescWindowController.m

19 lines
309 B
Mathematica
Raw Normal View History

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