rlDrawVertexArrayInstanced method
Implementation
@override
void rlDrawVertexArrayInstanced(
num offset,
num count,
num instances,
) => run(
() => RaylibDebugLabels.rlDrawVertexArrayInstanced(offset, count, instances),
() => rl.Rlgl.rlDrawVertexArrayInstanced(
offset.toInt(),
count.toInt(),
instances.toInt(),
),
);