// Copyright Epic Games, Inc. All Rights Reserved. #pragma once #include "Templates/Function.h" namespace mu::ParallelExecutionUtils { void InvokeBatchParallelFor(int32 Num, TFunctionRef Body); void InvokeBatchParallelForSingleThread(int32 Num, TFunctionRef Body); }