Beispiel #1
0
func IsJoystickInstalled() bool {
	var b bool

	b = bool(C.al_is_joystick_installed())

	return b
}
Beispiel #2
0
// Returns true if the Allegro joystick module ws instaled, false if not.
func IsJoystickInstalled() bool {
	return bool(C.al_is_joystick_installed())
}