This commit is contained in:
恍兮惚兮 2024-09-08 12:39:14 +08:00
parent 06f134e87a
commit 20ce1fa8d0
2 changed files with 12 additions and 0 deletions

View File

@ -37,4 +37,15 @@ public:
check_by_target = check_by_list{L"koe\\*.koe", L"PDT\\*.pdt", L"Gameexe.ini"};
};
bool attach_function();
};
class RealliveX : public Reallive
{
public:
RealliveX()
{
// 部分远古版本
check_by = CHECK_BY::RESOURCE_STR;
check_by_target = L"RealLive";
};
};

View File

@ -399,5 +399,6 @@ std::vector<ENGINE *> check_engines()
new Sceplay,
new Onscripter,
new TACTICS,
new RealliveX,
};
}