示例#1
0
func IsJoystickInstalled() bool {
	var b bool

	b = bool(C.al_is_joystick_installed())

	return b
}
示例#2
0
文件: joystick.go 项目: beoran/algo
// Returns true if the Allegro joystick module ws instaled, false if not.
func IsJoystickInstalled() bool {
	return bool(C.al_is_joystick_installed())
}