This commit is contained in:
koritsa
2026-05-17 22:44:49 +03:00
commit 0d90a0b02a
9071 changed files with 44364 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
// © 2025 Naked People Team. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class NakedDesireTarget : TargetRules
{
public NakedDesireTarget(TargetInfo Target) : base(Target)
{
Type = TargetType.Game;
DefaultBuildSettings = BuildSettingsVersion.V6;
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
ExtraModuleNames.Add("NakedDesire");
}
}