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

@ -38,3 +38,14 @@ public:
}; };
bool attach_function(); 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 Sceplay,
new Onscripter, new Onscripter,
new TACTICS, new TACTICS,
new RealliveX,
}; };
} }