20 lines
402 B
C++
20 lines
402 B
C++
#include "ScreenUtilsBase.h"
|
|
#include "Engine/Core/Math/Color32.h"
|
|
#include "Engine/Core/Math/Vector2.h"
|
|
|
|
Color32 ScreenUtilsBase::GetPixelAt(int32 x, int32 y) {
|
|
return Color32::Black;
|
|
}
|
|
|
|
Int2 ScreenUtilsBase::GetScreenCursorPosition() {
|
|
return { 0, 0 };
|
|
}
|
|
|
|
void ScreenUtilsBase::BlockAndReadMouse() {
|
|
}
|
|
|
|
void ScreenUtilsBase::PickColor() {
|
|
}
|
|
|
|
Delegate<Color32> ScreenUtilsBase::PickColorDone;
|