15 lines
223 B
Objective-C
15 lines
223 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
|
|
#include "WindowData.h"
|
|
|
|
@interface OSXView : NSView
|
|
{
|
|
@public SWindowData *window_data;
|
|
#if defined(USE_METAL_API)
|
|
@private NSTrackingArea *tracking_area;
|
|
#endif
|
|
}
|
|
|
|
@end
|
|
|