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
12
13
14
15
16
//! IL2CPP Collection types exports
//!
//! This module contains wrappers for standard IL2CPP collection types:
//! - `Il2cppArray`: Fixed-size arrays
//! - `Il2cppList`: Dynamic lists (generics)
//! - `Il2cppDictionary`: Key-value dictionaries (generics)
//! - `Il2cppString`: IL2CPP string implementation
pub mod array;
pub mod dictionary;
pub mod list;
pub mod string;

pub use array::Il2cppArray;
pub use dictionary::Il2cppDictionary;
pub use list::Il2cppList;
pub use string::Il2cppString;