EHS/include/IO/File.h

9 lines
138 B
C
Raw Normal View History

2023-12-17 03:29:08 -08:00
#pragma once
2023-12-17 15:00:08 -08:00
#include "EHS.h"
2023-12-17 03:29:08 -08:00
#if defined(LWE_OS_WINDOWS)
#include "File_W32.h"
#elif defined(LWE_OS_LINUX)
#include "File_UNX.h"
#endif