You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
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]
17 lines
344 B
C
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;
|
|
}; |