13 lines
113 B
Objective-C
13 lines
113 B
Objective-C
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@interface OpenGLView : NSOpenGLView
|
|
{
|
|
}
|
|
- (void) drawRect: (NSRect) bounds;
|
|
@end
|
|
|
|
|