GeneralCommands.h 319 B

123456789101112131415
  1. #ifndef GENERALCOMMANDS_H
  2. #define GENERALCOMMANDS_H
  3. #include <vector>
  4. #include <string>
  5. #include "server/commands/ServerCommands.h"
  6. namespace GeneralCommands
  7. {
  8. void test(ServerCommands& sc, const std::vector<std::string>& args);
  9. void stop(ServerCommands& sc, const std::vector<std::string>& args);
  10. }
  11. #endif