Ejemplo n.º 1
0
func GameControllerGetStringForAxis(axis GameControllerAxis) string {
	_axis := (C.SDL_GameControllerAxis)(axis)
	return (C.GoString)(C.SDL_GameControllerGetStringForAxis(_axis))
}
Ejemplo n.º 2
0
// GameControllerGetStringForAxis (https://wiki.libsdl.org/SDL_GameControllerGetStringForAxis)
func GameControllerGetStringForAxis(axis GameControllerAxis) string {
	return C.GoString(C.SDL_GameControllerGetStringForAxis(axis.c()))
}