Files
Josh Adams c39ce85151 - Fixed Turnkey copyrights
- Latest changes

[CL 13345289 by Josh Adams in ue5-main branch]
2020-05-18 18:03:04 -04:00

29 lines
502 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Turnkey
{
public class BuildSource
{
public string Project;
public CopyAndRun[] Sources;
public string BuildEnumerationSuffix;
// string[] Platforms;
// string Project;
internal void PostDeserialize()
{
if (Sources != null)
{
Array.ForEach(Sources, x => x.PostDeserialize());
}
}
}
}