# eSpellSlot
# 说明
技能槽位的枚举,用于标识英雄技能、召唤师技能、物品等不同类型的技能槽位,值类型为number
# 如何使用
auto qSpell = player->GetSpell(eSpellSlot::Q);
auto summonerSpell = player->GetSpell(eSpellSlot::Summoner1);
# Properties
| key | value | remarks |
|---|---|---|
| Unknown | -1 | 未知槽位 |
| Q | 0 | Q技能槽位 |
| W | 1 | W技能槽位 |
| E | 2 | E技能槽位 |
| R | 3 | R技能槽位 |
| Summoner1 | 4 | 召唤师技能1槽位 |
| Summoner2 | 5 | 召唤师技能2槽位 |
| Item1 | 6 | 物品栏1槽位 |
| Item2 | 7 | 物品栏2槽位 |
| Item3 | 8 | 物品栏3槽位 |
| Item4 | 9 | 物品栏4槽位 |
| Item5 | 10 | 物品栏5槽位 |
| Item6 | 11 | 物品栏6槽位 |
| Trinket | 12 | 饰品栏槽位 |
| Recall | 13 | 回城技能槽位 |
| Passive | 63 | 被动技能槽位 |