Updated some examples

This commit is contained in:
Ray
2025-11-17 19:20:45 +01:00
parent 063986fdae
commit a590126351
5 changed files with 14 additions and 22 deletions

View File

@ -40,14 +40,8 @@ int main(void)
//----------------------------------------------------------------------------------
if (IsKeyPressed(KEY_H))
{
if (IsCursorHidden())
{
ShowCursor();
}
else
{
HideCursor();
}
if (IsCursorHidden()) ShowCursor();
else HideCursor();
}
ballPosition = GetMousePosition();