mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 06:15:35 +08:00
16 lines
521 B
C++
16 lines
521 B
C++
|
|
|
|
class Yuris:public ENGINE{
|
|
public:
|
|
Yuris(){
|
|
|
|
check_by=CHECK_BY::CUSTOM;
|
|
is_engine_certain=false;
|
|
check_by_target=[](){
|
|
// jichi 8/1/2014: YU-RIS engine, lots of clockup game also has this pattern
|
|
// jichi 8/14/2013: CLOCLUP: "ノーブレスオブリージュ" would crash the game.
|
|
return (Util::CheckFile(L"pac\\*.ypf") || Util::CheckFile(L"*.ypf")) &&(!Util::CheckFile(L"noblesse.exe"));
|
|
};
|
|
};
|
|
bool attach_function();
|
|
}; |