mirror of
https://github.com/nickshanks/ResKnife.git
synced 2024-11-04 22:06:17 +00:00
23 lines
475 B
Objective-C
23 lines
475 B
Objective-C
//
|
|
// PNGWindowController.h
|
|
// ResKnife
|
|
//
|
|
// Created by Nate Weaver on 2012-7-4.
|
|
// Copyright (c) 2012 Derailer. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "ResKnifePluginProtocol.h"
|
|
#import "ResKnifeResourceProtocol.h"
|
|
|
|
|
|
@interface PNGWindowController : NSWindowController <ResKnifePluginProtocol> {
|
|
NSImageView *imageView;
|
|
NSImage *image;
|
|
id <ResKnifeResourceProtocol> resource;
|
|
}
|
|
|
|
@property (assign) IBOutlet NSImageView *imageView;
|
|
|
|
@end
|