You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira FORT-342384 #review-16129757 @Rob.Cannaday @Sam.Zamani [CL 16156485 by Chris Varnsverry in ue5-main branch]
18 lines
306 B
C#
18 lines
306 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using EpicGames.Core;
|
|
|
|
public class CoreOnline : ModuleRules
|
|
{
|
|
public CoreOnline(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject"
|
|
}
|
|
);
|
|
}
|
|
}
|