mirror of
https://github.com/HIllya51/LunaTranslator.git
synced 2025-01-15 08:53:53 +08:00
16 lines
252 B
C++
16 lines
252 B
C++
|
|
|
|
class mono : public ENGINE
|
|
{
|
|
public:
|
|
mono()
|
|
{
|
|
|
|
check_by = CHECK_BY::CUSTOM;
|
|
check_by_target = [this]()
|
|
{ return attach_function_(); };
|
|
};
|
|
bool attach_function_();
|
|
bool attach_function() { return true; }
|
|
};
|