2024-05-06 23:30:27 +08:00
|
|
|
|
2024-02-07 20:59:24 +08:00
|
|
|
|
2024-08-12 16:46:39 +08:00
|
|
|
class Candy : public ENGINE
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Candy()
|
|
|
|
{
|
|
|
|
|
|
|
|
check_by = CHECK_BY::FILE_ANY;
|
|
|
|
check_by_target = check_by_list{L"*.fpk", L"data\\*.fpk"};
|
|
|
|
is_engine_certain = false;
|
2024-02-07 20:59:24 +08:00
|
|
|
};
|
2024-08-12 16:46:39 +08:00
|
|
|
bool attach_function();
|
2024-02-07 20:59:24 +08:00
|
|
|
};
|
|
|
|
|
2024-08-12 16:46:39 +08:00
|
|
|
class WillowSoft : public ENGINE
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WillowSoft()
|
|
|
|
{
|
2024-02-07 20:59:24 +08:00
|
|
|
|
2024-08-12 16:46:39 +08:00
|
|
|
check_by = CHECK_BY::FILE;
|
|
|
|
check_by_target = L"Selene.dll";
|
|
|
|
is_engine_certain = false;
|
2024-02-07 20:59:24 +08:00
|
|
|
};
|
2024-08-12 16:46:39 +08:00
|
|
|
bool attach_function();
|
|
|
|
};
|