You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb trivial #rnx #preflight 61009082431c7800012fcdd3 #ROBOMERGE-SOURCE: CL 16977624 in //UE5/Main/... #ROBOMERGE-BOT: STARSHIP (Main -> Release-Engine-Test) (v838-16927207) [CL 16977626 by joe kirchoff in ue5-release-engine-test branch]
16 lines
283 B
C#
16 lines
283 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using UnrealBuildTool;
|
|
|
|
public class AtomicQueue : ModuleRules
|
|
{
|
|
public AtomicQueue(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
Type = ModuleType.External;
|
|
|
|
PublicSystemIncludePaths.Add(ModuleDirectory);
|
|
}
|
|
}
|
|
|