Skip to main content

wowlab_engine_application/
gear.rs

1//! Gear resolution: items → stats, set bonuses, and weapons.
2
3mod enchants;
4mod items;
5
6pub(crate) use items::{GearResult, bench_gear_result, compute_stats_from_gear};
7
8#[cfg(test)]
9mod tests;