// Copyright Epic Games, Inc. All Rights Reserved. #include "ChaosClothAsset/SelectionGroupCustomization.h" #include "ChaosClothAsset/CollectionClothFacade.h" namespace UE::Chaos::ClothAsset { TSharedRef FSelectionGroupCustomization::MakeInstance() { return MakeShareable(new FSelectionGroupCustomization); } TArray FSelectionGroupCustomization::GetTargetGroupNames(const FManagedArrayCollection& /*Collection*/) const { return FCollectionClothFacade::GetValidClothCollectionGroupName(); } } // End namespace UE::Chaos::ClothAsset