mirror of
https://github.com/raysan5/raygui.git
synced 2025-12-25 10:22:33 -05:00
Added functions definition placeholder
This commit is contained in:
12
src/raygui.h
12
src/raygui.h
@ -497,13 +497,13 @@ static const char *TextFormat(const char *text, ...); // Formattin
|
||||
//-------------------------------------------------------------------------------
|
||||
static Vector2 GetMousePosition(void) { return (Vector2){ 0, 0 }; }
|
||||
static int GetMouseWheelMove(void) { return 0; }
|
||||
static bool IsMouseButtonDown(int button);
|
||||
static bool IsMouseButtonPressed(int button);
|
||||
static bool IsMouseButtonReleased(int button);
|
||||
static bool IsMouseButtonDown(int button) { return false; }
|
||||
static bool IsMouseButtonPressed(int button) { return false; }
|
||||
static bool IsMouseButtonReleased(int button) { return false; }
|
||||
|
||||
static int GetKeyPressed(void); // -- GuiTextBox()
|
||||
static bool IsKeyPressed(int key); // -- GuiTextBox()
|
||||
static bool IsKeyDown(int key); // -- GuiTextBox()
|
||||
static bool IsKeyDown(int key) { return false; }
|
||||
static bool IsKeyPressed(int key) { return false; }
|
||||
static int GetKeyPressed(void) { return 0; } // -- GuiTextBox()
|
||||
//-------------------------------------------------------------------------------
|
||||
|
||||
// Drawing required functions
|
||||
|
||||
Reference in New Issue
Block a user