Communication_OrgEditor.Target.cs 375 B

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