GuiGetStyle method

int GuiGetStyle(
  1. GuiControl control,
  2. GuiProperty property
)

Implementation

int GuiGetStyle(
  GuiControl control,
  GuiProperty property,
) => run(
  () => 'GuiGetStyle(${control.name}, ${property.name})',
  () => rl.Gui.GuiGetStyle(
    control.value,
    property.value,
  ),
);