10 lines
184 B
C++
10 lines
184 B
C++
#pragma once
|
|
#include "Engine/Core/Math/Color32.h"
|
|
|
|
class PlatformScreenUtils {
|
|
public:
|
|
static Color32 GetPixelAt(int32 x, int32 y);
|
|
static Int2 GetScreenCursorPosition();
|
|
};
|
|
|