Skip to content

Commit

Permalink
Mouse.ShowCursor
Browse files Browse the repository at this point in the history
  • Loading branch information
Terria-K committed Sep 11, 2024
1 parent de9bb16 commit 9565c5e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Riateu/Core/Input/Mouse/Mouse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,9 @@ internal void Update()
}
}
}

public void ShowCursor(bool show)
{
SDL.SDL_ShowCursor(show ? 1 : 0);
}
}

0 comments on commit 9565c5e

Please sign in to comment.