rlglInit method

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

Implementation

void rlglInit(
  num width,
  num height,
) => run(
  () => 'rlglInit($width, $height)',
  () => rl.Rlgl.rlglInit(
    width.toInt(),
    height.toInt(),
  ),
);