SetWindowPosition method
Set window position on screen
Implementation
@override
void SetWindowPosition(
num x,
num y,
) => run(
() => RaylibDebugLabels.SetWindowPosition(x, y),
() => rl.Core.SetWindowPosition(
x.toInt(),
y.toInt(),
),
);