spine-runtimes/spine-ue/Source/SpineUE.Target.cs
2024-04-03 16:37:04 +02:00

15 lines
378 B
C#

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