toy_arms/lib.rs
1#![doc(html_logo_url = "https://svgshare.com/i/cF0.svg")]
2
3#[cfg(target_os = "windows")]
4mod keyboard;
5
6#[doc(inline)]
7pub use keyboard::*;
8
9#[cfg(feature = "internal")]
10pub mod internal;
11
12#[cfg(feature = "external")]
13pub mod external;
14
15// This is necessary to let submodules import the functions in this.
16pub mod pattern_scan_common;
17mod utils_common;
18
19pub trait GameObject {
20 unsafe fn from_raw(address: *const usize) -> Option<*mut Self>;
21}