/*** Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved. File: FS.Generic.hpp Date: 2021-6-12 Author: Reece ***/ #pragma once #if defined(AURORA_PLATFORM_WIN32) #include "FS.Win32.hpp" #elif defined(AURORA_PLATFORM_APPLE) || defined(AURORA_PLATFORM_IOS) #include "FS.Apple.hpp" #elif defined(AURORA_PLATFORM_LINUX) #include "FS.Linux.hpp" #else #define _AURUNTIME_GENERICFS #endif