LunaHook-mirror/LunaHook/engine32/Silkys.h
恍兮惚兮 614ba2aa7e silkys
2024-03-10 15:21:11 +08:00

35 lines
919 B
C++

#include"engine.h"
class Silkys:public ENGINE{
public:
Silkys(){
check_by=CHECK_BY::FILE_ALL;
check_by_target=check_by_list{L"data.arc",L"effect.arc",L"Script.arc"};
/// Almost the same as Silkys except mes.arc is replaced by Script.arc
};
bool attach_function();
};
class SilkysOld:public ENGINE{
public:
SilkysOld(){
check_by=CHECK_BY::FILE_ALL;
check_by_target=check_by_list{L"bgm.AWF",L"effect.AWF",L"gcc.ARC",L"mes.ARC",L"sequence.ARC"};
/// Almost the same as Silkys except mes.arc is replaced by Script.arc
};
bool attach_function();
};
class Siglusold:public ENGINE{
public:
Siglusold(){
//女系家族
//https://vndb.org/v5650
check_by=CHECK_BY::FILE_ALL;
check_by_target=check_by_list{L"*.mfg",L"*.mff",L"*.mfm",L"*.mfs"};
};
bool attach_function();
};