mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-26 19:33:43 +00:00
15 lines
387 B
C#
15 lines
387 B
C#
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class FortniteServerTarget : TargetRules
|
|
{
|
|
public FortniteServerTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Server;
|
|
|
|
ExtraModuleNames.AddRange( new string[] { "FortniteGame", "FortniteEditor", "FortniteUI" } );
|
|
}
|
|
}
|