mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 06:15:35 +08:00
23 lines
505 B
C
23 lines
505 B
C
|
#include"engine.h"
|
||
|
|
||
|
class Nitroplus:public ENGINE{
|
||
|
public:
|
||
|
Nitroplus(){
|
||
|
|
||
|
check_by=CHECK_BY::FILE;
|
||
|
check_by_target=L"*.npa";
|
||
|
};
|
||
|
bool attach_function();
|
||
|
};
|
||
|
|
||
|
class Nitroplusplus:public ENGINE{
|
||
|
public:
|
||
|
Nitroplusplus(){
|
||
|
check_by=CHECK_BY::CUSTOM;
|
||
|
is_engine_certain=false;
|
||
|
check_by_target=[](){
|
||
|
return Util::SearchResourceString(L"Nitro+")&&Util::CheckFile(L"system.dll");
|
||
|
};
|
||
|
};
|
||
|
bool attach_function();
|
||
|
};
|