#ifndef VERSION_H #define VERSION_H #define GRABBAG_VERSION_STRING "1.0.1" #define GRABBAG_BUILD_STRING "1" #define GRABBAG_FULL_VERSION_STRING "V1.0.1_1" // 获取版本信息的便捷函数 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