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

15 lines
253 B
C++

class Alice : public ENGINE
{
public:
Alice()
{
check_by = CHECK_BY::CUSTOM;
check_by_target = [this]()
{ return attach_function_(); };
};
bool attach_function_();
bool attach_function() { return true; }
};