* Executes the given command, returning its success. * * @param sender Source of the command * @param command Command which was executed * @param args Passed command arguments * @return true if the execution is successful, otherwise false */
| 38 | * @return true if the execution is successful, otherwise false |
| 39 | */ |
| 40 | virtual bool onCommand(CommandSender &sender, const Command &command, const std::vector<std::string> &args) |
| 41 | { |
| 42 | return false; |
| 43 | } |
| 44 | }; |
| 45 | } // namespace endstone |