Files
Joe Kirchoff 2c2c2388cc Remove reference to unused header AtomicQueue/AtomicQueue.h. Make it a simple external module in case anyone needs it in the future
#rb trivial
#rnx
#preflight 61009082431c7800012fcdd3

[CL 16977624 by Joe Kirchoff in ue5-main branch]
2021-07-27 21:16:52 -04:00

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);
}
}