pollymc/api/logic/net/URLConstants.cpp
2016-05-01 00:00:14 +02:00

17 lines
250 B
C++

#include "URLConstants.h"
namespace URLConstants {
QString getLegacyJarUrl(QString version)
{
return "http://" + AWS_DOWNLOAD_VERSIONS + getJarPath(version);
}
QString getJarPath(QString version)
{
return version + "/" + version + ".jar";
}
}