You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
-Header and body container - Simple Title container - Column wrapping container - Zero State builder - Addition of favorites - moved additions of placement entries into the category builder #jira UE-205201 #rb JeanMichel.Dignard [CL 32977191 by karen jirak in ue5-main branch]
21 lines
500 B
C
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();
|
|
};
|