GeneralCommands.h 347 B

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