EHS/include/ehs/io/File.h

9 lines
148 B
C
Raw Normal View History

2024-02-05 22:25:30 -08:00
#pragma once
#include "ehs/system/OS.h"
2024-02-05 22:25:30 -08:00
#if defined(EHS_OS_WINDOWS)
#include "File_W32.h"
#elif defined(EHS_OS_LINUX)
#include "File_UNX.h"
#endif