mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-15 17:30:27 +08:00
12 lines
154 B
C++
12 lines
154 B
C++
#pragma once
|
|
|
|
namespace asst
|
|
{
|
|
static constexpr const char* Version =
|
|
#ifdef MAA_VERSION
|
|
MAA_VERSION;
|
|
#else
|
|
"DEBUG VERSION";
|
|
#endif
|
|
}
|