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