LunaHook-mirror/LunaHook/engine32/V8.h

13 lines
248 B
C
Raw Normal View History

2024-02-07 20:59:24 +08:00
#include"engine.h"
class V8:public ENGINE{
public:
V8(){
check_by=CHECK_BY::CUSTOM;
2024-02-14 23:48:36 +08:00
check_by_target=[this](){return attach_function_();};
2024-02-07 20:59:24 +08:00
};
2024-02-14 23:48:36 +08:00
bool attach_function_();
bool attach_function(){return true;}
2024-02-07 20:59:24 +08:00
};