feat(raygui): get message box example working

This commit is contained in:
Daniel Hill 2025-04-19 14:33:51 -04:00 committed by Nikolas
parent d6c77762cb
commit f4b69764db
6 changed files with 616 additions and 577 deletions

View file

@ -13,8 +13,8 @@ pub extern "c" fn GuiSetState(state: c_int) void;
pub extern "c" fn GuiGetState() c_int;
pub extern "c" fn GuiSetFont(font: rl.Font) void;
pub extern "c" fn GuiGetFont() rl.Font;
pub extern "c" fn GuiSetStyle(control: rgui.GuiControl, property: c_int, value: c_int) void;
pub extern "c" fn GuiGetStyle(control: rgui.GuiControl, property: c_int) c_int;
pub extern "c" fn GuiSetStyle(control: rgui.Control, property: c_int, value: c_int) void;
pub extern "c" fn GuiGetStyle(control: rgui.Control, property: c_int) c_int;
pub extern "c" fn GuiLoadStyle(fileName: [*c]const u8) void;
pub extern "c" fn GuiLoadStyleDefault() void;
pub extern "c" fn GuiEnableTooltip() void;