mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
24 lines
458 B
C++
24 lines
458 B
C++
#include"engine.h"
|
|
|
|
class Purple:public ENGINE{
|
|
public:
|
|
Purple(){
|
|
|
|
check_by=CHECK_BY::FILE_ALL;
|
|
check_by_target=check_by_list{L"WAIT.TAM",L"data.hed",L"data.dat"};
|
|
|
|
|
|
};
|
|
bool attach_function();
|
|
};
|
|
|
|
class Purple2:public ENGINE{
|
|
public:
|
|
Purple2(){
|
|
|
|
check_by=CHECK_BY::FILE_ALL;
|
|
check_by_target=check_by_list{L"misc\\*.pk",L"music\\*.px"};
|
|
|
|
};
|
|
bool attach_function();
|
|
}; |