toy-arms 0.2.0

A crates designed to ease game hack in rust.
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(target_os = "windows")]
use std::ffi::c_void;
mod iat_hook;
pub use iat_hook::IatFinder;

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

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