LunaHook-mirror/LunaHook/engine32/RUGP.h

16 lines
272 B
C
Raw Normal View History

2024-05-06 23:30:27 +08:00
2024-02-07 20:59:24 +08:00
2024-10-26 11:58:19 +08:00
class RUGP : public ENGINE
{
public:
RUGP()
{
check_by = CHECK_BY::CUSTOM;
check_by_target = []()
{
return (wcsstr(processName_lower, L"rugp") || Util::CheckFile(L"rugp.exe"));
2024-02-07 20:59:24 +08:00
};
};
2024-10-26 11:58:19 +08:00
bool attach_function();
2024-02-07 20:59:24 +08:00
};