Surgo/Project/Source/SurgoEditor.Target.cs

12 lines
303 B
C#
Raw Normal View History

2024-04-08 00:28:09 -07:00
using TargetInfo = UnrealBuildTool.TargetInfo;
using TargetRules = UnrealBuildTool.TargetRules;
using TargetType = UnrealBuildTool.TargetType;
2024-04-08 00:28:09 -07:00
public class SurgoEditorTarget : TargetRules
{
public SurgoEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
2024-04-08 00:28:09 -07:00
}
}