setWindowSize function

void setWindowSize(
  1. int width,
  2. int height
)

Set window dimensions.

Implementation

void setWindowSize(int width, int height) {
  return library.SetWindowSize(width, height);
}