RaylibGui constructor

RaylibGui(
  1. Raylib rl
)

Implementation

RaylibGui(super.rl) {
  GuiEnable = _module.dwrap('GuiEnable', []);
  GuiDisable = _module.dwrap('GuiDisable', []);
  GuiLock = _module.dwrap('GuiLock', []);
  GuiUnlock = _module.dwrap('GuiUnlock', []);
  GuiIsLocked = _module.dwrap('GuiIsLocked', [], n);
  GuiSetAlpha = _module.dwrap('GuiSetAlpha', [n]);
  GuiSetState = _module.dwrap('GuiSetState', [n]);
  GuiGetState = _module.dwrap('GuiGetState', [], n);
  GuiSetFont = _module.dwrap('GuiSetFont', [n]);
  GuiGetFont = _module.dwrap('GuiGetFont', [n]);
  GuiSetStyle = _module.dwrap('GuiSetStyle', [n, n, n]);
  GuiGetStyle = _module.dwrap('GuiGetStyle', [n, n], n);
  GuiLoadStyle = _module.dwrap('GuiLoadStyle', [s]);
  GuiLoadStyleDefault = _module.dwrap('GuiLoadStyleDefault', []);
  GuiEnableTooltip = _module.dwrap('GuiEnableTooltip', []);
  GuiDisableTooltip = _module.dwrap('GuiDisableTooltip', []);
  GuiSetTooltip = _module.dwrap('GuiSetTooltip', [s]);
  GuiIconText = _module.dwrap('GuiIconText', [n, s], n);
  GuiSetIconScale = _module.dwrap('GuiSetIconScale', [n]);
  GuiGetIcons = _module.dwrap('GuiGetIcons', [], n);
  GuiLoadIcons = _module.dwrap('GuiLoadIcons', [s, n], n);
  GuiDrawIcon = _module.dwrap('GuiDrawIcon', [n, n, n, n, n]);
  GuiGetTextWidth = _module.dwrap('GuiGetTextWidth', [s], n);
  GuiWindowBox = _module.dwrap('GuiWindowBox', [n, s]);
  GuiGroupBox = _module.dwrap('GuiGroupBox', [n, s], n);
  GuiLine = _module.dwrap('GuiLine', [n, s], n);
  GuiPanel = _module.dwrap('GuiPanel', [n, s], n);
  GuiTabBar = _module.dwrap('GuiTabBar', [n, n, n, n], n);
  GuiScrollPanel = _module.dwrap('GuiScrollPanel', [n, s, n, n, n], n);
  GuiLabel = _module.dwrap('GuiLabel', [n, s], n);
  GuiButton = _module.dwrap('GuiButton', [n, s], n);
  GuiLabelButton = _module.dwrap('GuiLabelButton', [n, s], n);
  GuiToggle = _module.dwrap('GuiToggle', [n, s, n], n);
  GuiToggleGroup = _module.dwrap('GuiToggleGroup', [n, s, n], n);
  GuiToggleSlider = _module.dwrap('GuiToggleSlider', [n, s, n], n);
  GuiCheckBox = _module.dwrap('GuiCheckBox', [n, s, n], n);
  GuiComboBox = _module.dwrap('GuiComboBox', [n, s, n], n);
  GuiDropdownBox = _module.dwrap('GuiDropdownBox', [n, s, n, n], n);
  GuiSpinner = _module.dwrap('GuiSpinner', [n, s, n, n, n, n], n);
  GuiValueBox = _module.dwrap('GuiValueBox', [n, s, n, n, n, n], n);
  GuiValueBoxFloat = _module.dwrap('GuiValueBoxFloat', [n, s, s, n, n], n);
  GuiTextBox = _module.dwrap('GuiTextBox', [n, n, n, n], n);
  GuiSlider = _module.dwrap('GuiSlider', [n, s, s, n, n, n], n);
  GuiSliderBar = _module.dwrap('GuiSliderBar', [n, s, s, n, n, n]);
  GuiProgressBar = _module.dwrap('GuiProgressBar', [n, s, s, n, n, n], n);
  GuiStatusBar = _module.dwrap('GuiStatusBar', [n, s], n);
  GuiDummyRec = _module.dwrap('GuiDummyRec', [n, s], n);
  GuiGrid = _module.dwrap('GuiGrid', [n, s, n, n, n], n);
  GuiListView = _module.dwrap('GuiListView', [n, s, n, n], n);
  GuiListViewEx = _module.dwrap('GuiListViewEx', [n, n, n, n, n, n], n);
  GuiMessageBox = _module.dwrap('GuiMessageBox', [n, s, s, s], n);
  GuiTextInputBox = _module.dwrap('GuiTextInputBox', [n, s, s, s, n, n, n], n);
  GuiColorPicker = _module.dwrap('GuiColorPicker', [n, s, n], n);
  GuiColorPanel = _module.dwrap('GuiColorPanel', [n, s, n], n);
  GuiColorBarAlpha = _module.dwrap('GuiColorBarAlpha', [n, s, n], n);
  GuiColorBarHue = _module.dwrap('GuiColorBarHue', [n, s, n], n);
  GuiColorPickerHSV = _module.dwrap('GuiColorPickerHSV', [n, s, n], n);
  GuiColorPanelHSV = _module.dwrap('GuiColorPanelHSV', [n, s, n], n);
}