mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
16 lines
291 B
C++
16 lines
291 B
C++
#ifndef HAIKU_GL_VIEW_H
|
|
#define HAIKU_GL_VIEW_H
|
|
|
|
#include <kernel/image.h> // needed for image_id
|
|
#include <GLView.h>
|
|
|
|
class HaikuGLView : public BGLView
|
|
{
|
|
public:
|
|
HaikuGLView(BRect frame, uint32 type);
|
|
virtual void AttachedToWindow(void);
|
|
virtual void Draw(BRect updateRect);
|
|
};
|
|
|
|
#endif
|