Esempio n. 1
0
func GetKeyboardFocus() *Window {
	return (*Window)(unsafe.Pointer(C.SDL_GetKeyboardFocus()))
}
Esempio n. 2
0
func GetKeyboardFocus() *Window {
	window := C.SDL_GetKeyboardFocus()
	return wrapWindow(window)
}
Esempio n. 3
0
func GetKeyboardFocus() *Window {
	return &Window{C.SDL_GetKeyboardFocus()}
}