diff --git a/SkyFrontier.uproject b/SkyFrontier.uproject index de53b0e..c906279 100644 --- a/SkyFrontier.uproject +++ b/SkyFrontier.uproject @@ -1,6 +1,6 @@ { "FileVersion": 3, - "EngineAssociation": "4.27", + "EngineAssociation": "{83C4FF75-46EF-2173-C770-949490863B6F}", "Category": "", "Description": "", "Modules": [ diff --git a/Source/SkyFrontierServer.Target.cs b/Source/SkyFrontierServer.Target.cs new file mode 100644 index 0000000..933dffa --- /dev/null +++ b/Source/SkyFrontierServer.Target.cs @@ -0,0 +1,14 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +using UnrealBuildTool; +using System.Collections.Generic; + +public class SkyFrontierServerTarget : TargetRules +{ + public SkyFrontierServerTarget( TargetInfo Target) : base(Target) + { + Type = TargetType.Server; + DefaultBuildSettings = BuildSettingsVersion.V2; + ExtraModuleNames.AddRange( new string[] { "SkyFrontier" } ); + } +}