| 420 | } |
| 421 | |
| 422 | void FPointIOCollection::Sort() |
| 423 | { |
| 424 | TRACE_CPUPROFILER_EVENT_SCOPE(FPointIOCollection::Sort); |
| 425 | Pairs.Sort([](const TSharedPtr<FPointIO>& A, const TSharedPtr<FPointIO>& B) { return A->IOIndex < B->IOIndex; }); |
| 426 | } |
| 427 | |
| 428 | FBox FPointIOCollection::GetInBounds() const |
| 429 | { |
no outgoing calls