mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-24 06:15:35 +08:00
15 lines
341 B
C
15 lines
341 B
C
|
#include"engine.h"
|
||
|
|
||
|
class Renpy:public ENGINE{
|
||
|
public:
|
||
|
Renpy(){
|
||
|
|
||
|
check_by=CHECK_BY::CUSTOM;
|
||
|
check_by_target=[](){
|
||
|
//Renpy - sample game https://vndb.org/v19843
|
||
|
return Util::CheckFile(L"*.py")|| GetModuleHandleW(L"librenpython.dll");
|
||
|
};
|
||
|
};
|
||
|
bool attach_function();
|
||
|
};
|