SDL2: Reveal the ShowCursor function

master
Noah 2022-05-04 22:39:06 -07:00
parent c0c2d05619
commit 129a24300d
1 changed files with 9 additions and 0 deletions

View File

@ -118,6 +118,15 @@ func (r *Renderer) SetWindowIcon(icon image.Image) error {
return nil
}
// ShowCursor sets whether the mouse cursor should be visible.
func (r *Renderer) ShowCursor(v bool) {
if v {
sdl.ShowCursor(sdl.ENABLE)
} else {
sdl.ShowCursor(sdl.DISABLE)
}
}
// SetTitle sets the SDL window title.
func (r *Renderer) SetTitle(title string) {
r.title = title