diff options
| author | Juan Linietsky | 2015-10-17 12:48:47 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-10-17 12:48:47 -0300 |
| commit | 6f9631fc5151b3267c6fcea5f70249fc36814db8 (patch) | |
| tree | 2aa06230d95846602aa731967264c1619baa2a39 /platform/haiku/haiku_application.h | |
| parent | 63033aa646f7a49fbcecbc8cc30077cf268be10c (diff) | |
| parent | be0f7563fbff581ca072504978bedc6a55e180f1 (diff) | |
| download | godot-6f9631fc5151b3267c6fcea5f70249fc36814db8.tar.gz godot-6f9631fc5151b3267c6fcea5f70249fc36814db8.tar.zst godot-6f9631fc5151b3267c6fcea5f70249fc36814db8.zip | |
Merge branch 'master' of https://github.com/okamstudio/godot
Diffstat (limited to 'platform/haiku/haiku_application.h')
| -rw-r--r-- | platform/haiku/haiku_application.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/platform/haiku/haiku_application.h b/platform/haiku/haiku_application.h new file mode 100644 index 000000000..a64b01c94 --- /dev/null +++ b/platform/haiku/haiku_application.h @@ -0,0 +1,13 @@ +#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(); +}; + +#endif |
