mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 06:15:35 +08:00
16 lines
360 B
C
16 lines
360 B
C
|
#include"engine.h"
|
||
|
|
||
|
class yuzusuyu:public ENGINE{
|
||
|
public:
|
||
|
yuzusuyu(){
|
||
|
|
||
|
is_engine_certain=false;
|
||
|
check_by=CHECK_BY::CUSTOM;
|
||
|
check_by_target=[](){
|
||
|
|
||
|
return (wcscmp(processName_lower, L"suyu.exe")==0 || wcscmp(processName_lower, L"yuzu.exe")==0);
|
||
|
};
|
||
|
};
|
||
|
bool attach_function();
|
||
|
};
|
||
|
|