mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-13 12:33:27 +02:00
10 lines
277 B
C++
10 lines
277 B
C++
#include "Common.h"
|
|
#include "ServerMisc.h"
|
|
|
|
namespace ServerMisc
|
|
{
|
|
const Version MinProtocolVersion(1,4,0);
|
|
const Version MaxProtocolVersion(1,4,2);
|
|
const QString AppVersion(VERSION);
|
|
const QString AppSubVersion = QString("%1 %2").arg(APPNAME).arg(VERSION);
|
|
}
|