This commit is contained in:
2022-04-06 09:58:47 +08:00
parent 01a3e912bf
commit 517b5f947d
3 changed files with 199 additions and 89 deletions

View File

@@ -11,6 +11,15 @@ static std::map<std::string, std::string>String_STL;
//构造bool类型容器
static std::map<std::string, bool>Bool_STL;
struct TimeSTLStruct
{
std::string Name;
int Max_Time;
int Now_Time;
};
//构造Time类型容器
static std::map<std::string, TimeSTLStruct>Time_STL;
//构造intarr类型容器
static std::map<std::string, std::map<int, int>>IntArr_STL;
//构造floatarr类型容器
@@ -21,6 +30,7 @@ static std::map<std::string, std::map<int, std::string>>StringArr_STL;
static std::map<std::string, std::map<int, bool>>BoolArr_STL;
//构造 抽奖 类型容器
struct Dargonresult
{