mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2025-01-13 23:53:54 +08:00
16 lines
344 B
C++
16 lines
344 B
C++
|
|
|
|
class Moonstone : public ENGINE
|
|
{
|
|
public:
|
|
Moonstone()
|
|
{
|
|
|
|
check_by = CHECK_BY::CUSTOM;
|
|
check_by_target = []()
|
|
{
|
|
return Util::CheckFile(L"bgm.pak") && Util::CheckFile(L"data.pak") && Util::CheckFile(L"voice.pak") && Util::SearchResourceString(L"mts");
|
|
};
|
|
};
|
|
bool attach_function();
|
|
}; |