AdvancedLauncher.Management.Commands.PluginCommand.CreateCommands C# (CSharp) Method

CreateCommands() protected method

protected CreateCommands ( ) : SubCommand>.Dictionary
return SubCommand>.Dictionary
        protected override Dictionary<string, SubCommand> CreateCommands()
        {
            Dictionary<string, SubCommand> commands = new Dictionary<string, SubCommand>();
            commands.Add("list", PluginList);
            commands.Add("start", PluginStart);
            commands.Add("stop", PluginStop);
            return commands;
        }