diff options
| author | jussi | 2022-03-29 18:50:00 +0300 |
|---|---|---|
| committer | jussi | 2022-03-29 18:50:00 +0300 |
| commit | 9997e40530d0af01a2fa930d45c55b419cae996f (patch) | |
| tree | 1920054001faee9945254f364f146135d8f713e8 /src/lua_core.c | |
| parent | 6d1c14e09cb7c7a5657374e8d102fd5bb48d0b73 (diff) | |
| download | reilua-enhanced-9997e40530d0af01a2fa930d45c55b419cae996f.tar.gz reilua-enhanced-9997e40530d0af01a2fa930d45c55b419cae996f.tar.bz2 reilua-enhanced-9997e40530d0af01a2fa930d45c55b419cae996f.zip | |
Advanced gui controls.
Diffstat (limited to 'src/lua_core.c')
| -rw-r--r-- | src/lua_core.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lua_core.c b/src/lua_core.c index 7783778..d6ef706 100644 --- a/src/lua_core.c +++ b/src/lua_core.c @@ -832,6 +832,14 @@ void luaRegister() { lua_register( L, "RL_GuiProgressBar", lguiGuiProgressBar ); lua_register( L, "RL_GuiScrollBar", lguiGuiScrollBar ); lua_register( L, "RL_GuiDropdownBox", lguiGuiDropdownBox ); + /* Advanced. */ + lua_register( L, "RL_GuiListView", lguiGuiListView ); + lua_register( L, "RL_GuiMessageBox", lguiGuiMessageBox ); + lua_register( L, "RL_GuiTextInputBox", lguiGuiTextInputBox ); + lua_register( L, "RL_GuiColorPicker", lguiGuiColorPicker ); + lua_register( L, "RL_GuiColorPanel", lguiGuiColorPanel ); + lua_register( L, "RL_GuiColorBarAlpha", lguiGuiColorBarAlpha ); + lua_register( L, "RL_GuiColorBarHue", lguiGuiColorBarHue ); } /* Lua util functions. */ |
