示例#1
0
func GameControllerEventState(state int) int {
	_state := (C.int)(state)
	return (int)(C.SDL_GameControllerEventState(_state))
}
示例#2
0
// GameControllerEventState (https://wiki.libsdl.org/SDL_GameControllerEventState)
func GameControllerEventState(state int) int {
	return int(C.SDL_GameControllerEventState(C.int(state)))
}