mirror of
https://github.com/HIllya51/LunaHook.git
synced 2024-11-23 22:05:36 +08:00
22 lines
465 B
C++
22 lines
465 B
C++
#include"engine.h"
|
|
|
|
class Unicorn:public ENGINE{
|
|
public:
|
|
Unicorn(){
|
|
|
|
check_by=CHECK_BY::FILE_ANY;
|
|
check_by_target=check_by_list{L"*.szs",L"Data\\*.szs"};
|
|
};
|
|
bool attach_function();
|
|
};
|
|
|
|
|
|
class Unicorn_Anesen:public ENGINE{
|
|
public:
|
|
Unicorn_Anesen(){
|
|
|
|
check_by=CHECK_BY::FILE_ALL;
|
|
check_by_target=check_by_list{L"BGM",L"DATA",L"MGD",L"MSD",L"SE",L"VOICE"};
|
|
};
|
|
bool attach_function();
|
|
}; |