mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-24 21:57:44 +00:00
12 lines
174 B
C++
12 lines
174 B
C++
#ifndef _VERSION_H
|
|
#define _VERSION_H
|
|
|
|
#include <string>
|
|
|
|
namespace Sapphire::Version
|
|
{
|
|
extern const std::string GIT_HASH;
|
|
extern const std::string VERSION;
|
|
}
|
|
|
|
#endif
|