mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 13:55:36 +08:00
24 lines
421 B
C++
24 lines
421 B
C++
|
|
|
|
class Bishop:public ENGINE{
|
|
public:
|
|
Bishop(){
|
|
|
|
check_by=CHECK_BY::FILE;
|
|
check_by_target=L"GRAPHICS\\PACK.PK";
|
|
is_engine_certain=false;
|
|
};
|
|
bool attach_function();
|
|
};
|
|
|
|
|
|
class Bishop2:public ENGINE{
|
|
public:
|
|
Bishop2(){
|
|
|
|
check_by=CHECK_BY::FILE;
|
|
check_by_target=L"*.bsa";
|
|
is_engine_certain=false;
|
|
};
|
|
bool attach_function();
|
|
}; |