mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
14 lines
221 B
C++
14 lines
221 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();
|
||
|
};
|
||
|
|
||
|
#endif
|