//! User-facing IL2CPP runtime access.
//!
//! This module re-exports the crate's primary runtime entry points:
//!
//! - [`cache`] for assembly and metadata lookup
//! - [`Thread`] for VM thread attachment
//! - [`invoke_method`] for low-level method invocation
//! - dump helpers such as [`dump`] and [`dump_all_to`]
//! - thin Unity wrappers such as [`Application`] and [`Time`]
//!
//! Most integrations should start here after calling [`crate::init`]. When you
//! need richer metadata or object wrappers, move into [`crate::structs`].
pub use *;
pub use cache;
pub use invoke_method;
pub use ;
pub use Thread;
pub use ;
pub use ;