1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
//! Combat Plugin Module //! //! Turn-based combat framework with damage calculation, turn management, //! combat log tracking, and deterministic replay support. pub mod components; pub mod events; pub mod plugin; pub mod systems; // Re-export main types pub use components::*; pub use events::*; pub use plugin::CombatPlugin; pub use systems::*;