mirror of
https://github.com/wesnoth/wesnoth
synced 2025-05-16 18:31:32 +00:00
12 lines
245 B
Objective-C
12 lines
245 B
Objective-C
/* WNCustomDialogView */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface WNCustomDialogView : NSImageView
|
|
{
|
|
}
|
|
-(void)awakeFromNib;
|
|
-(NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender;
|
|
-(BOOL)performDragOperation:(id <NSDraggingInfo>)sender;
|
|
@end
|