fBaseXtensions.Game.Hero.Hotbar.RefreshHotbar C# (CSharp) Method

RefreshHotbar() public static method

Enumerates through the ActiveSkills and adds them to the HotbarAbilities collection.
public static RefreshHotbar ( ) : void
return void
        public static void RefreshHotbar()
        {
            var hotbarskills = ReturnHotbarSkills();
            HotbarSkills = new List<HotbarSkill>(hotbarskills);
            _lastCheckedSkills = DateTime.Now;
        }