| 67 | } |
| 68 | |
| 69 | void FAsyncHandle::SetRoot(const TSharedPtr<FAsyncMultiHandle>& InRoot, const int32 InHandleIdx) |
| 70 | { |
| 71 | HandleIdx = InHandleIdx; |
| 72 | Root = InRoot; |
| 73 | InRoot->IncrementPendingTasks(); |
| 74 | } |
| 75 | |
| 76 | void FAsyncHandle::SetParent(const TSharedPtr<FAsyncMultiHandle>& InParent) |
| 77 | { |
no test coverage detected