Files
UnrealEngine/Engine/Platforms/VisionOS/Source/Programs/UnrealBuildTool/VisionOSProjectGenerator.cs
2025-05-18 13:04:45 +08:00

30 lines
770 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using EpicGames.Core;
using Microsoft.Extensions.Logging;
using System.Collections.Generic;
namespace UnrealBuildTool
{
class VisionOSProjectGenerator : IOSProjectGenerator
{
/// <summary>
/// Constructor
/// </summary>
/// <param name="Arguments">Command line arguments passed to the project generator</param>
/// <param name="Logger">Logger for output</param>
public VisionOSProjectGenerator(CommandLineArguments Arguments, ILogger Logger)
: base(Arguments, Logger)
{
}
/// <summary>
/// Enumerate all the platforms that this generator supports
/// </summary>
public override IEnumerable<UnrealTargetPlatform> GetPlatforms()
{
yield return UnrealTargetPlatform.VisionOS;
}
}
}