mirror of
https://github.com/whoahq/whoa.git
synced 2026-03-18 21:51:06 +03:00
17 lines
297 B
Objective-C
17 lines
297 B
Objective-C
#ifndef APP_MAC_ENGINE_GL_LAYER_VIEW_H
|
|
#define APP_MAC_ENGINE_GL_LAYER_VIEW_H
|
|
|
|
#include "gx/gll/GLLayerView.h"
|
|
#include <AppKit/AppKit.h>
|
|
#include <Foundation/Foundation.h>
|
|
|
|
@interface EngineGLLayerView : GLLayerView
|
|
|
|
- (void)insertText:(id)string;
|
|
|
|
- (void)keyDown:(NSEvent*)event;
|
|
|
|
@end
|
|
|
|
#endif
|