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
//! Math module exports
#[allow(clippy::module_inception)]
pub mod math;

pub use math::{
    Bounds, Color, Matrix2x2, Matrix3x3, Matrix4x4, Plane, Quaternion, Ray, RaycastHit, Rect,
    Vector2, Vector3, Vector4,
};