toy-arms 0.5.0

A crates designed to ease game hack in rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(target_os = "windows")]
mod keyboard;
#[doc(inline)]
pub use keyboard::*;

mod utils;

mod memory;
#[doc(inline)]
pub use memory::*;

#[doc(inline)]
pub use self::utils::*;

pub trait GameObject {
    unsafe fn from_raw(address: *const usize) -> Option<*mut Self>;

}