Skip to main content

il2cpp_bridge_rs/structs/components/core/
mod.rs

1//! Fundamental Unity component wrappers.
2//!
3//! This module contains the base types most Unity-facing workflows build on:
4//! `UnityObject`, `GameObject`, `Component`, `Transform`, and `MonoBehaviour`.
5pub mod component;
6pub mod game_object;
7pub mod mono_behaviour;
8pub mod transform;
9pub mod unity_object;