恍兮惚兮 78c88dae3b some
2024-11-13 12:27:49 +08:00

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; }
};