Files
Yamato/Source/MyProject3.Target.cs
2025-02-13 00:03:56 +05:30

16 lines
390 B
C#

// Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
using System.Collections.Generic;
public class MyProject3Target : TargetRules
{
public MyProject3Target(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V4;
ExtraModuleNames.AddRange( new string[] { "MyProject3" } );
}
}