LunaHook-mirror/LunaHook/engine64/yuzusuyu.h

16 lines
407 B
C
Raw Normal View History

2024-03-21 17:57:04 +08:00
#include"engine.h"
class yuzusuyu:public ENGINE{
public:
yuzusuyu(){
is_engine_certain=false;
check_by=CHECK_BY::CUSTOM;
check_by_target=[](){
2024-04-15 13:30:04 +08:00
return (wcscmp(processName_lower, L"suyu.exe")==0 || wcscmp(processName_lower, L"yuzu.exe")==0|| wcscmp(processName_lower, L"sudachi.exe")==0);
2024-03-21 17:57:04 +08:00
};
};
bool attach_function();
};