GeneralCommands.h 354 B

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