Yerbacon/src/headers/Yerbacon.hpp

12 lines
209 B
C++
Raw Normal View History

#ifndef YERBACON_HPP
#define YERBACON_HPP
#ifndef YBCON_VERSION
#define YBCON_VERSION "UNKNOWN"
#endif
namespace Yerbacon {
consteval const char* getVersion() noexcept { return YBCON_VERSION; }
}
#endif