mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2025-01-15 08:53:53 +08:00
15 lines
264 B
C++
15 lines
264 B
C++
|
|
|
|
class DAC : public ENGINE
|
|
{
|
|
public:
|
|
DAC()
|
|
{
|
|
check_by = CHECK_BY::CUSTOM;
|
|
check_by_target = []()
|
|
{
|
|
return Util::CheckFile(L"*.dpk") && Util::SearchResourceString(L"DAC");
|
|
};
|
|
};
|
|
bool attach_function();
|
|
}; |