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