LiteLoaderBDS-1.16.40/LiteLoader/Kernel/Command/CommandOutputAPI.cpp

13 lines
327 B
C++

#include <MC/CommandOutput.hpp>
void CommandOutput::addMessage(const std::string& str) {
this->addMessage(str, {}, (CommandOutputMessageType)0);
}
void CommandOutput::success(const std::string& str) {
this->success(str, {});
}
void CommandOutput::error(const std::string& str) {
this->error(str, {});
}