rlglInit method

  1. @override
void rlglInit(
  1. num width,
  2. num height
)
override

Implementation

@override
void rlglInit(
  num width,
  num height,
) => run(
  () => RaylibDebugLabels.rlglInit(width, height),
  () => rl.Rlgl.rlglInit(
    width.toInt(),
    height.toInt(),
  ),
);