Refactor ScreenUtilities

This commit is contained in:
2024-07-25 19:46:22 +03:00
committed by Ari Vuollet
parent 2e32bb8c4b
commit b88fc89951
11 changed files with 360 additions and 204 deletions

View File

@@ -0,0 +1,15 @@
// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
#pragma once
#if PLATFORM_WINDOWS
#include "Windows/WindowsScreenUtilities.h"
#elif PLATFORM_LINUX
#include "Linux/LinuxScreenUtilities.h"
#elif PLATFORM_MAC
#include "Mac/MacScreenUtilities.h"
#else
#include "Base/ScreenUtilitiesBase.h"
#endif
#include "Types.h"