1 2 3 4 5 6 7 8
pub mod character; pub mod ragdoll; pub mod vehicle; // Re-export common traits and structs pub use character::*; pub use ragdoll::*; pub use vehicle::*;