mirror of
https://github.com/cculianu/Fulcrum.git
synced 2026-08-17 13:07:35 +02:00
11 lines
277 B
C++
11 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);
|
||
|
|
}
|