mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-30 11:23:28 +00:00
12 lines
245 B
Objective-C
12 lines
245 B
Objective-C
/* WNCampaignIconView */
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface WNCampaignIconView : NSImageView
|
|
{
|
|
}
|
|
-(void)awakeFromNib;
|
|
-(NSDragOperation)draggingEntered:(id <NSDraggingInfo>)sender;
|
|
-(BOOL)performDragOperation:(id <NSDraggingInfo>)sender;
|
|
@end
|