old-hiro/windows/application.hpp

17 lines
259 B
C++
Raw Permalink Normal View History

2016-05-15 10:45:15 +00:00
#if defined(Hiro_Application)
namespace hiro {
struct pApplication {
static auto run() -> void;
static auto pendingEvents() -> bool;
static auto processEvents() -> void;
static auto quit() -> void;
static auto initialize() -> void;
};
}
#endif