You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Added NaniteUtilities module to share useful code #rb graham.wihlidal [FYI] rune.stubbe #preflight 62bf30add94b57687c825cde #ROBOMERGE-AUTHOR: brian.karis #ROBOMERGE-SOURCE: CL 20919354 via CL 20919358 via CL 20919375 #ROBOMERGE-BOT: UE5 (Release-Engine-Staging -> Main) (v971-20777995) [CL 20920993 by brian karis in ue5-main branch]
18 lines
293 B
C#
18 lines
293 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class NaniteUtilities : ModuleRules
|
|
{
|
|
public NaniteUtilities(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"Engine",
|
|
}
|
|
);
|
|
}
|
|
}
|