InitWindow function

void InitWindow(
  1. int width,
  2. int height,
  3. String title
)

Implementation

void InitWindow(int width, int height, String title) {
  _titleStack.add(title.toNativeUtf8().cast());
  raylib.InitWindow(width, height, _titleStack.last);
}