il2cpp-bridge-rs 0.1.3

Rust library for Unity IL2CPP runtime introspection — resolve classes, invoke methods, and interact with the IL2CPP VM at runtime
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Hierarchy related types
pub mod class;
pub mod object;
pub mod r#type;
mod type_fmt;
pub mod value_type;

pub use class::{Class, MethodSelector};
pub use object::{Il2cppObject, Object};
pub use r#type::Type;
pub use value_type::ValueType;