Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

21 lines
500 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "ColumnWrappingContainer.h"
/**
* Provides templates for
*/
struct FColumnWrappingContainerTemplates
{
/**
* Gets the singleton instance of FColumnWrappingContainerTemplates
*/
static FColumnWrappingContainerTemplates& Get();
/**
* Creates a TSharedRef<FColumnWrappingContainer> that will create columns on a best fit for size basis
*/
TSharedRef<FColumnWrappingContainer> GetBestFitColumnsWithSmallCells();
};