Beispiel #1
0
        //list all commands here
        private void CreateCommands()

        {
            CommandHelp.CreateCommand();
            CommandLogin.CreateCommand();
            CommandQuit.CreateCommand();
        }
Beispiel #2
0
        //list all commands here
        public void CreateLoggedInCommands()

        {
            CommandHelp.CreateCommand();
            CommandQuit.CreateCommand();
            CommandLogout.CreateCommand();
        }
Beispiel #3
0
        //Modify this function adding all your own created commands
        private void CreateCommands()
        {
            //Created commands

            //Unity functionality commands
            CommandLoadScene.CreateCommand();

            //Basic commands
            CommandHelp.CreateCommand();
            CommandDescriptionCommand.CreateCommand();
            CommandClearConsole.CreateCommand();
            CommandQuit.CreateCommand();
        }