Added an "sdk" command to the console layout.

This commit is contained in:
casey langen 2017-01-02 10:47:56 -08:00
parent b917953286
commit 93a82f1e21

View File

@ -250,6 +250,10 @@ bool ConsoleLayout::ProcessCommand(const std::string& cmd) {
else if (name == "plugins") {
this->ListPlugins();
}
else if (name == "sdk") {
this->output->WriteLine(" sdk/api revision: " +
std::to_string(musik::core::sdk::SdkVersion));
}
else if (name == "v" || name == "volume") {
this->SetVolume(args);
}