// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
using System.IO;
using Tools.DotNETCommon;
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;
}
}
}