InitWindow method

  1. @override
void InitWindow(
  1. num width,
  2. num height,
  3. String title
)
override

Implementation

@override
void InitWindow(
  num width,
  num height,
  String title,
) => run(
  () => RaylibDebugLabels.InitWindow(width, height, title),
  () => rl.Core.InitWindow(
    width.toInt(),
    height.toInt(),
    rl.Temp.String$.ValueOrNull(title),
  ),
);