Example #1
0
// SetCursor (https://wiki.libsdl.org/SDL_SetCursor)
func SetCursor(cursor *Cursor) {
	C.SDL_SetCursor(cursor.cptr())
}
Example #2
0
func SetCursor(cursor *Cursor) {
	_cursor := (*C.SDL_Cursor)(cursor)
	C.SDL_SetCursor(_cursor)
}
Example #3
0
func (c *Cursor) Set() {
	C.SDL_SetCursor(c.c)
}