EHS
Loading...
Searching...
No Matches
Window.h
Go to the documentation of this file.
1#pragma once
2
3#include "ehs/system/OS.h"
4
5#if defined(EHS_OS_WINDOWS)
6 #include "Window_W32.h"
7#elif defined(EHS_OS_LINUX)
8 #if defined(EHS_WS_XCB)
9 #include "Window_XCB.h"
10 #elif defined(EHS_WS_WAYLAND)
11 #include "Window_Way.h"
12 #endif
13#endif