mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 01:06:00 +08:00
15 lines
382 B
C#
15 lines
382 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.Latest;
|
|
Type = TargetType.Game;
|
|
ExtraModuleNames.AddRange(new string[] { "SpineUE" });
|
|
}
|
|
}
|