mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-22 13:37:22 +00:00
9655f0ee45
fix compile issues
13 lines
222 B
C++
13 lines
222 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
|