TwoTerm/Views/RolloverButton.h

17 lines
264 B
C
Raw Permalink Normal View History

2018-02-14 16:14:36 +00:00
//
// RolloverButton.h
// TwoTerm
//
// Created by Kelvin Sherlock on 2/13/2018.
//
#import <Cocoa/Cocoa.h>
@interface RolloverButton : NSButton {
NSImage *_image;
NSImage *_rolloverImage;
NSTrackingArea *_trackingArea;
BOOL _rollOver;
}
@end