AdEvade.Config.Properties.GetSpellConfig C# (CSharp) Method

GetSpellConfig() public static method

public static GetSpellConfig ( this spell, AdEvade.Config.Controls.SpellConfigControl control ) : SpellConfig
spell this
control AdEvade.Config.Controls.SpellConfigControl
return SpellConfig
        public static SpellConfig GetSpellConfig(this SpellData spell, SpellConfigControl control)
        {
            return new SpellConfig
            {
                SData = spell,
                DangerLevel = spell.Dangerlevel,
                Dodge = true,
                Draw = true,
                Radius = spell.Radius,
                PlayerName = spell.CharName
            };
        }
        public static void OnValueChanged(ConfigValue key, object value)