This commit is contained in:
2022-04-21 12:48:20 +08:00
parent ba3f6c0325
commit d2fb2a75d2
7 changed files with 150 additions and 29 deletions

View File

@@ -1,6 +1,8 @@
#include "pch.h"
#include "STL.h"
//龙盒
#if defined DRAGONBOX_SWITCH
void STL::SyncDargonBox_STL()
{
DargonState_STL["dargonmap"].sync = 0;
@@ -98,7 +100,10 @@ int STL::SelectDargonModel_STL(int Type)
}
return 0;
}
#endif
//普通 STL
#if defined NORMAL_STL
int STL::Check_STL(std::string name,int Type,int idx)
{
switch (Type)
@@ -199,3 +204,4 @@ bool STL::GetBoolArr_STL(std::string name, int idx)
{
return BoolArr_STL[name][idx];
}
#endif