gilrs_core/platform/linux/
mod.rs

1// Copyright 2016-2018 Mateusz Sieczko and other GilRs Developers
2//
3// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
4// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
5// http://opensource.org/licenses/MIT>, at your option. This file may not be
6// copied, modified, or distributed except according to those terms.
7// Copyright 2016 GilRs Developers
8mod ff;
9mod gamepad;
10mod ioctl;
11mod udev;
12
13pub use self::ff::Device as FfDevice;
14pub use self::gamepad::{native_ev_codes, EvCode, Gamepad, Gilrs};
15
16pub const IS_Y_AXIS_REVERSED: bool = true;