setWindowTitle function

void setWindowTitle(
  1. String title
)

Set title for window (only PLATFORM_DESKTOP).

Implementation

void setWindowTitle(String title) {
  return library.SetWindowTitle(string.toNative(title));
}