setWindowPosition function

void setWindowPosition(
  1. int x,
  2. int y
)

Set window position on screen (only PLATFORM_DESKTOP).

Implementation

void setWindowPosition(int x, int y) {
  return library.SetWindowPosition(x, y);
}