| 101 | } |
| 102 | |
| 103 | bool AFClassCallBackManager::AddMoveEvent(MOVE_EVENT_FUNCTOR&& cb, const int32_t prio) |
| 104 | { |
| 105 | move_events_.insert(std::make_pair(prio, std::forward<MOVE_EVENT_FUNCTOR>(cb))); |
| 106 | return true; |
| 107 | } |
| 108 | |
| 109 | bool AFClassCallBackManager::OnClassEvent( |
| 110 | const AFGUID& id, const std::string& class_name, const ArkEntityEvent eClassEvent, const AFIDataList& valueList) |