DarkflameServer/dCommon/dClient/ClientVersion.h
David Markowitz 9655f0ee45 make include guards standards conforming
fix compile issues
2024-10-30 00:34:25 -07:00

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