Skip to main content

wowlab_types/types/game/
mod.rs

1mod attribute;
2pub(crate) mod class;
3mod gear_slot;
4pub mod introspection;
5
6pub use attribute::{Attribute, DerivedStat, MasteryEffect, RatingType};
7pub use class::{ClassId, ImplementedSpecInfo, PetKind, PetType, RaceId, SpecId};
8pub use gear_slot::{GearEntry, GearSlot};
9pub use introspection::{
10    AuraInfo, AutoAttackInfo, CdrCondition, CdrEffect, CooldownInfo, DamageInfo, DamageKind,
11    HeroTalentTree, PeriodicEffect, PeriodicInfo, ResourceInfo, SpecIntrospection, SpellInfo,
12};