예제 #1
0
파일: mouse.go 프로젝트: veandco/go-sdl2
// FreeCursor (https://wiki.libsdl.org/SDL_FreeCursor)
func FreeCursor(cursor *Cursor) {
	C.SDL_FreeCursor(cursor.cptr())
}
예제 #2
0
func FreeCursor(cursor *Cursor) {
	_cursor := (*C.SDL_Cursor)(cursor)
	C.SDL_FreeCursor(_cursor)
}
예제 #3
0
파일: mouse.go 프로젝트: willemvds/sdl
func (c *Cursor) Free() {
	C.SDL_FreeCursor(c.c)
}