blob: 2e8ad02286835579161c7e685945d8dba4d3fa7d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
using System.Collections.Generic;
public class unrealstatusEditorTarget : TargetRules
{
public unrealstatusEditorTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Editor;
ExtraModuleNames.AddRange( new string[] { "unrealstatus" } );
}
}
|