mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
22 lines
460 B
C++
22 lines
460 B
C++
#include"engine.h"
|
|
|
|
class UnisonShift:public ENGINE{
|
|
public:
|
|
UnisonShift(){
|
|
|
|
check_by=CHECK_BY::FILE;
|
|
check_by_target=L"*.dat";
|
|
is_engine_certain=false;
|
|
};
|
|
bool attach_function();
|
|
};
|
|
|
|
class UnisonShift2:public ENGINE{
|
|
public:
|
|
UnisonShift2(){
|
|
|
|
check_by=CHECK_BY::FILE_ALL;
|
|
check_by_target=check_by_list{L"PIC.*",L"TP.*",L"GR.*",L"BGM.*"};
|
|
};
|
|
bool attach_function();
|
|
}; |