//! 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 use Il2cppArray;
pub use Il2cppDictionary;
pub use Il2cppList;
pub use Il2cppString;