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