GuiSetStyle method
Implementation
void GuiSetStyle(
GuiControl control,
GuiProperty property,
num value,
) => run(
() => 'GuiSetStyle(${control.name}, ${property.name}, $value)',
() => rl.Gui.GuiSetStyle(
control.value,
property.value,
value.toInt(),
),
);