Ejemplo n.º 1
0
        private void delActClick(object sender, EventArgs e)
        {
            string str = "";

            if (actionSelectorHB.SelectedItem.GetType() == typeof(string))
            {
                str = (string)actionSelectorHB.SelectedItem;
            }
            else
            {
                str = ((HitBoxAction)actionSelectorHB.SelectedItem).Name;
            }

            DelText?.Invoke(str);
        }