EHS/include/ehs/system/System.h

9 lines
146 B
C
Raw Normal View History

2023-12-17 03:29:08 -08:00
#pragma once
2024-01-14 09:38:57 -08:00
#include "ehs/EHS.h"
2023-12-17 03:29:08 -08:00
2023-12-17 15:56:13 -08:00
#if defined(EHS_OS_WINDOWS)
2023-12-17 03:29:08 -08:00
#include "System_W32.h"
2023-12-17 15:56:13 -08:00
#elif defined(EHS_OS_LINUX)
2023-12-17 03:29:08 -08:00
#include "System_LNX.h"
#endif