Files
minecraft-pe-0.6.1/src/SharedConstants.cpp
2026-03-02 22:04:18 +03:00

11 lines
204 B
C++
Executable File

#include "SharedConstants.h"
namespace Common {
std::string getGameVersionString(const std::string& versionSuffix /* = "" */)
{
return std::string("v0.6.1") + versionSuffix + " alpha";
}
};