ChatCommandExecutor.h 271 B

12345678910111213
  1. #pragma once
  2. #include "ChatCommand.h"
  3. class ChatCommandExecutor : public virtual Framework::ReferenceCounter
  4. {
  5. private:
  6. Framework::RCArray<ChatCommand> knownCommands;
  7. public:
  8. ChatCommandExecutor();
  9. bool execute(Framework::Text line, Entity* zActor);
  10. };