mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
16 lines
393 B
C++
16 lines
393 B
C++
#include"engine.h"
|
|
|
|
class Renpy:public ENGINE{
|
|
public:
|
|
Renpy(){
|
|
|
|
check_by=CHECK_BY::ALL_TRUE;
|
|
// 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();
|
|
};
|