Files
FlaxEngine/Source/Engine/Platform/Windows/WindowsScreenUtils.h
2023-05-15 20:44:18 -04:00

24 lines
512 B
C++

#pragma once
#if PLATFORM_WINDOWS
#include "Engine/Platform/Base/ScreenUtilsBase.h"
#include "Engine/Core/Math/Color32.h"
class FLAXENGINE_API ScreenUtils : public ScreenUtilsBase {
public:
// [ScreenUtilsBase]
static Color32 GetPixelAt(int32 x, int32 y);
static Int2 GetScreenCursorPosition();
static void BlockAndReadMouse();
static void PickColor();
static Delegate<Color32> PickColorDone;
public:
static void PickSelected();
static void Test(Color32 testVal);
};
#endif