objc2_game_controller/
lib.rs

1//! # Bindings to the `GameController` framework
2//!
3//! See [Apple's docs][apple-doc] and [the general docs on framework crates][framework-crates] for more information.
4//!
5//! [apple-doc]: https://developer.apple.com/documentation/gamecontroller/
6//! [framework-crates]: https://docs.rs/objc2/latest/objc2/topics/about_generated/index.html
7#![no_std]
8#![cfg_attr(docsrs, feature(doc_auto_cfg))]
9// Update in Cargo.toml as well.
10#![doc(html_root_url = "https://docs.rs/objc2-game-controller/0.3.1")]
11
12#[cfg(feature = "alloc")]
13extern crate alloc;
14
15#[cfg(feature = "std")]
16extern crate std;
17
18mod generated;
19#[cfg(feature = "GCInputNames")]
20mod input_names;
21
22#[allow(unused_imports, unreachable_pub)]
23pub use self::generated::*;
24#[cfg(feature = "GCInputNames")]
25pub use self::input_names::*;