EHS/include/ehs/system/Open.h

9 lines
139 B
C
Raw Normal View History

2023-12-17 03:29:08 -08:00
#pragma once
#include "OS.h"
2023-12-17 15:56:13 -08:00
#if defined(EHS_OS_WINDOWS)
2023-12-17 03:29:08 -08:00
#include "Open_W32.h"
2023-12-17 15:56:13 -08:00
#elif defined(EHS_OS_LINUX)
2023-12-17 03:29:08 -08:00
#include "Open_UNX.h"
#endif