mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
16 lines
264 B
C++
16 lines
264 B
C++
#ifndef HAIKU_APPLICATION_H
|
|
#define HAIKU_APPLICATION_H
|
|
|
|
#include <kernel/image.h> // needed for image_id
|
|
#include <Application.h>
|
|
|
|
class HaikuApplication : public BApplication
|
|
{
|
|
public:
|
|
HaikuApplication();
|
|
//private:
|
|
// HaikuDirectWindow* window;
|
|
};
|
|
|
|
#endif
|