mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 10:18:21 +00:00
13 lines
234 B
C
13 lines
234 B
C
|
#ifndef __CLIENTVERSION_H__
|
||
|
#define __CLIENTVERSION_H__
|
||
|
|
||
|
#include <cstdint>
|
||
|
|
||
|
namespace ClientVersion {
|
||
|
constexpr uint16_t major = 1;
|
||
|
constexpr uint16_t current = 10;
|
||
|
constexpr uint16_t minor = 64;
|
||
|
}
|
||
|
|
||
|
#endif // !__CLIENTVERSION_H__
|