Skip to main content

wowlab_engine/cli/
presentation.rs

1use wowlab_types::game::SpecId;
2
3pub(crate) fn spec_display_name(spec: SpecId) -> String {
4    format!("{} {}", spec, spec.class())
5}