LunaHook-mirror/LunaHook/engine32/Fizz.h
恍兮惚兮 4d68e318d8 GSD
2024-08-13 15:40:26 +08:00

27 lines
652 B
C++

class Fizz : public ENGINE
{
public:
Fizz()
{
check_by = CHECK_BY::CUSTOM;
check_by_target = [&]()
{
auto _ = Util::CheckFile(L"data.gsp") && Util::CheckFile(L"Image*.gsp") && Util::CheckFile(L"bgm*.gsp") && Util::CheckFile(L"se.gsp");
if (Util::CheckFile(L"voice/*.gsp"))
{
typex = 1;
return true;
}
if (wcscmp(processName_lower, L"gsd.exe") == 0)
{
typex = 2;
return true;
}
return false;
};
};
bool attach_function();
int typex = 0;
};