mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
19 lines
259 B
Objective-C
19 lines
259 B
Objective-C
#pragma once
|
|
|
|
@interface SplashScreenPanel: NSPanel
|
|
{
|
|
|
|
}
|
|
@end
|
|
|
|
@interface CustomImageButton : NSButton
|
|
{
|
|
NSString *buttonImageName;
|
|
NSTrackingArea *trackingArea;
|
|
}
|
|
|
|
- (void) setImageName:(NSString*)imgName;
|
|
- (NSString*) getImageName;
|
|
|
|
@end
|