cleat 0.1.0

Android IL2CPP game modding toolkit — safe Rust bindings for IL2CPP field access, method calls, and inline hooks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! cleat prelude — imports all commonly used types in one line.
//!
//! ```ignore
//! use cleat::prelude::*;
//! ```

pub use crate::class::Il2CppClass;
pub use crate::error::{Error, Result};
pub use crate::init::{app_data, set_app_data};
pub use crate::math::{Quaternion, Vector2, Vector3, Vector4};
pub use crate::method::MethodInfo;
pub use crate::object::Il2CppObject;
pub use crate::types::{Il2CppArray, Il2CppList, Il2CppString};
pub use crate::value_type::{Args, Il2CppValueType};