1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-02 08:57:44 +00:00
sapphire/src/servers/Server_Common/Version.h
Carlos C 782698c814 Add sapphire version string
need to implement location(s) where to show git revision / version in core

server info & logs come to mind
2017-09-13 18:06:31 -04:00

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