Files
MKCC/Source/MKCC.Target.cs
2020-11-30 14:27:22 +05:00

15 lines
344 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class MKCCTarget : TargetRules
{
public MKCCTarget( TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V2;
ExtraModuleNames.AddRange( new string[] { "MKCC" } );
}
}