Files
UnrealEngineUWP/Engine/Source/Programs/SlateUGS/Private/HordeBuildRowInfo.h
robert seiver 3810bb1598 Add experimental Slate UGS prototype that has UI frontend, no data layer yet.
See the attached Jira for a current screenshot of the UI

#jira UE-148909
#review @Brandon.Schaefer, @editor-ux
#preflight none

[CL 20368463 by robert seiver in ue5-main branch]
2022-05-25 14:02:29 -04:00

17 lines
344 B
C

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
struct HordeBuildRowInfo
{
bool bBuildStatus;
// Data for CODE/CONTENT
FText Changelist;
FText Time; // Todo: maybe use a Time class of some kind
FText Author;
FText Description;
// Data for EDITOR
// Data for PLATFORMS
// Data for CIS
FText Status;
};