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 [CL 16977624 by Joe Kirchoff in ue5-main 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);
|
|
}
|
|
}
|
|
|