示例#1
0
        public override void Enable()
        {
            ConsoleFunctions.WriteInfoLine("Enabling!!!!!!");
            CommandManager.AddCommand(new ExampleCommand("/"));
            var exampleSystem = new CommandSystem(new [] { "\\" });

            exampleSystem.AddCommand(new ExampleCommand("\\"));
            CommandManager.AddCommandSystem(exampleSystem);
        }