spine-runtimes/spine-ue/Source/SpineUE4.Target.cs
2024-04-03 16:11:59 +02:00

15 lines
381 B
C#

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