Communication_Org.Target.cs 361 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_OrgTarget : TargetRules
  5. {
  6. public Communication_OrgTarget(TargetInfo Target) : base(Target)
  7. {
  8. Type = TargetType.Game;
  9. ExtraModuleNames.AddRange( new string[] { "Communication_Org" } );
  10. }
  11. }