ABM_creator.ConsumableCreator.NotfyIconsNotFoundFor C# (CSharp) Метод

NotfyIconsNotFoundFor() публичный Метод

public NotfyIconsNotFoundFor ( string consumableName, string>.Dictionary missingIcons ) : void
consumableName string
missingIcons string>.Dictionary
Результат void
        public void NotfyIconsNotFoundFor(string consumableName, Dictionary<int, string> missingIcons) {
            DebugWindow.PrintDebugMessage(consumableName + " icons not found for spells:");
            foreach (int spellId in missingIcons.Keys)
            {
                DebugWindow.PrintDebugMessage(spellId.ToString() + ", " + missingIcons[spellId]);
            }
        }