Skip to main content

wowlab_engine_domain/rotation/buffer/
talent.rs

1wowlab_engine_macros::define_slot! {
2    #[slot(domain = "talent", kind = keyed, key_domain = "talent")]
3    pub struct TalentSlot {
4        #[expr("is_enabled", Bool, Direct)]
5        pub is_enabled: i32,
6
7        #[expr("rank", Int, Direct)]
8        pub rank: i32,
9
10        #[expr("max_rank", Int, Direct)]
11        pub max_rank: i32,
12    }
13}