123456789101112131415161718 |
- #include <iostream>
- #include "server/commands/GeneralCommands.h"
- void GeneralCommands::test(ServerCommands& sc, const std::vector<std::string>& args)
- {
- std::cout << "test command" << std::endl;
- for(unsigned long i = 0; i < args.size(); i++)
- {
- std::cout << " - " << args[i] << std::endl;
- }
- }
- void GeneralCommands::stop(ServerCommands& sc, const std::vector<std::string>& args)
- {
- //std::cout << cs.isServer() << std::endl;
- //gs.stop();
- }
|