mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-02 08:57:44 +00:00

need to implement location(s) where to show git revision / version in core server info & logs come to mind
15 lines
224 B
C++
15 lines
224 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
|