LunaHook-mirror/LunaHook/engine64/Renpy.h

15 lines
341 B
C
Raw Normal View History

2024-02-07 20:59:24 +08:00
#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();
};