Newer
Older
SkyFrontier-Project-IADE-UE4-3D / Source / SkyFrontier.Target.cs
@Hoomanbeans Hoomanbeans on 31 Oct 2022 365 bytes 1st test commit
  1. // Copyright Epic Games, Inc. All Rights Reserved.
  2. using UnrealBuildTool;
  3. using System.Collections.Generic;
  4. public class SkyFrontierTarget : TargetRules
  5. {
  6. public SkyFrontierTarget( TargetInfo Target) : base(Target)
  7. {
  8. Type = TargetType.Game;
  9. DefaultBuildSettings = BuildSettingsVersion.V2;
  10. ExtraModuleNames.AddRange( new string[] { "SkyFrontier" } );
  11. }
  12. }