mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2025-01-15 00:43:59 +08:00
20 lines
491 B
C++
20 lines
491 B
C++
|
|
|
|
class yuzu : public ENGINE
|
|
{
|
|
public:
|
|
yuzu()
|
|
{
|
|
jittype = JITTYPE::YUZU;
|
|
is_engine_certain = false;
|
|
check_by = CHECK_BY::CUSTOM;
|
|
check_by_target = []()
|
|
{
|
|
auto exes = {L"suyu.exe", L"yuzu.exe", L"sudachi.exe", L"citron.exe"};
|
|
return std::any_of(exes.begin(), exes.end(), [](const wchar_t *e)
|
|
{ return wcscmp(processName_lower, e) == 0; });
|
|
};
|
|
};
|
|
bool attach_function();
|
|
};
|