TestCommand.h 282 B

12345678910111213141516171819
  1. #ifndef TESTCOMMAND_H
  2. #define TESTCOMMAND_H
  3. #include "server/commands/BaseCommand.h"
  4. class TestCommand : public BaseCommand
  5. {
  6. public:
  7. TestCommand();
  8. virtual ~TestCommand();
  9. void execute(ICommandSource& cs, vector<string>& args) const;
  10. private:
  11. };
  12. #endif