mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-27 03:53:25 +00:00
15 lines
370 B
C#
15 lines
370 B
C#
using UnrealBuildTool;
|
|
|
|
public class FortniteGameTarget : TargetRules {
|
|
public FortniteGameTarget(TargetInfo Target) : base(Target) {
|
|
Type = TargetType.Game;
|
|
ExtraModuleNames.AddRange(new string[] {
|
|
"AnalyticsBlueprintLibrary",
|
|
"EasyAntiCheatCommon",
|
|
"FortniteEngineLoadingScreen",
|
|
"FortniteGame",
|
|
"LauncherSocialDefaults",
|
|
"FortniteUI"
|
|
});
|
|
}
|
|
} |