:alembic: toy-arms

Windows game hack helper utilities in rust.

This crate has some useful macros, functions and traits.

:fire: How to use this crate?

With this crate, making dll is simple as this: ```rust // A neat macro which defines entry point instead of you. // Also, you dont have to alloc/free console by yourself, console will show up only when debug compile. toyarms::createentrypoint!(hackmainthread);

// Main thread fn hackmainthread() { // YOUR STUNNING CODE'S SUPPOSED TO BE HERE; for i in 0..30000 { println!("using toy-arms {}", i); } } ```

:globewithmeridians: Other examples?

Take a look at examples directory, you'll see more examples! To run the example: shell cargo build --example EXAMPLE_NAME