forked from Kolyah35/minecraft-pe-0.6.1
11 lines
204 B
C++
Executable File
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";
|
|
}
|
|
|
|
};
|