mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 14:07:46 +00:00
15 lines
206 B
C++
15 lines
206 B
C++
#ifndef _VERSION_H
|
|
#define _VERSION_H
|
|
|
|
#include <string>
|
|
|
|
namespace Core {
|
|
namespace Version {
|
|
|
|
extern const std::string GIT_HASH;
|
|
extern const std::string VERSION;
|
|
|
|
} /* Version */
|
|
} /* Core */
|
|
|
|
#endif
|