// Copyright Epic Games, Inc. All Rights Reserved. using System; using System.Collections.Generic; using System.Text; using System.Diagnostics; using System.IO; using EpicGames.Core; namespace UnrealBuildTool { class TVOSProjectGenerator : IOSProjectGenerator { /// /// Constructor /// /// Command line arguments passed to the project generator public TVOSProjectGenerator(CommandLineArguments Arguments) : base(Arguments) { } /// /// Enumerate all the platforms that this generator supports /// public override IEnumerable GetPlatforms() { yield return UnrealTargetPlatform.TVOS; } } }