ResKnife/NovaTools/desc/DescWindowController.m

19 lines
282 B
Mathematica
Raw Normal View History

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