Guest User

Untitled

a guest
Aug 25th, 2018
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.39 KB | None | 0 0
  1. // Fill out your copyright notice in the Description page of Project Settings.
  2.  
  3. using UnrealBuildTool;
  4. using System.Collections.Generic;
  5.  
  6. public class SurvivalGameServerTarget : TargetRules
  7. {
  8.     public SurvivalGameServerTarget(TargetInfo Target) : base(Target)
  9.     {
  10.         Type = TargetType.Server;
  11.         bUsesSteam = true;
  12.  
  13.         ExtraModuleNames.AddRange( new string[] { "SurvivalGame" } );
  14.     }
  15. }
Add Comment
Please, Sign In to add comment