| 31 | class PluginCommand : public Command { |
| 32 | public: |
| 33 | PluginCommand(const Command &command, Plugin &owner) : Command(command), owner_(owner) {} |
| 34 | |
| 35 | bool execute(CommandSender &sender, const std::vector<std::string> &args) const override |
| 36 | { |
nothing calls this directly
no outgoing calls
no test coverage detected