ACAT.Extensions.Default.UI.Dialogs.GeneralSettingsForm.OnRunCommand C# (CSharp) Method

OnRunCommand() public method

Invoked when there is a need to run a command. The command comes from the animation file
public OnRunCommand ( string command, bool &handled ) : void
command string the command to run
handled bool wast it handled?
return void
        public void OnRunCommand(string command, ref bool handled)
        {
            switch (command)
            {
                default:
                    handled = false;
                    break;
            }
        }