mirror of
https://github.com/quizhizhe/LiteLoaderBDS-1.16.40.git
synced 2025-06-06 04:03:39 +00:00
13 lines
327 B
C++
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, {});
|
|
} |