#ifndef VERSION_H #define VERSION_H #define GRABBAG_VERSION_STRING "1.0.0" #define GRABBAG_BUILD_STRING "2" #define GRABBAG_FULL_VERSION_STRING "V1.0.0_2" // 获取版本信息的便捷函数 inline const char* GetGrabBagVersion() { return GRABBAG_VERSION_STRING; } inline const char* GetGrabBagBuild() { return GRABBAG_BUILD_STRING; } inline const char* GetGrabBagFullVersion() { return GRABBAG_FULL_VERSION_STRING; } #endif // VERSION_H