LunaHook-mirror/LunaHook/engine32/NeXAS.h

18 lines
386 B
C
Raw Permalink Normal View History

2024-05-06 23:30:27 +08:00
2024-02-07 20:59:24 +08:00
2024-10-05 23:28:01 +08:00
class NeXAS : public ENGINE
{
public:
NeXAS()
{
is_engine_certain = false;
check_by = CHECK_BY::CUSTOM;
check_by_target = []()
{
return Util::SearchResourceString(L"NeXAS") || (Util::CheckFile(L"*.pac") && (Util::CheckFile(L"Thumbnail.pac") || Util::CheckFile(L"Thumbnail5.pac")));
2024-06-16 15:49:23 +08:00
};
2024-10-05 23:28:01 +08:00
};
bool attach_function();
2024-02-07 20:59:24 +08:00
};