Files
FlaxEngine/Source/Engine/Platform/ScreenUtils.h
2023-05-10 13:34:28 -04:00

12 lines
298 B
C

#if PLATFORM_WINDOWS
#include "Windows/WindowsScreenUtils.h"
#elif PLATFORM_LINUX
#include "Linux/LinuxScreenUtils.h"
#elif PLATFORM_MAC
#include "Mac/MacScreenUtils.h"
#else
#error No Screen Utils For This Platform! Please ensure you are not targetting an Editor build.
#endif
#include "Types.h"