Files
UnrealEngineUWP/Engine/Source/Runtime/RenderCore/Private/CustomResourcePool.cpp
Guillaume Abadie 37a837b28f Fixes Missing copyright notice
#rb none

[CL 14176786 by Guillaume Abadie in ue5-main branch]
2020-08-24 19:44:52 -04:00

14 lines
250 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "CustomResourcePool.h"
ICustomResourcePool* GCustomResourcePool = nullptr;
void ICustomResourcePool::TickPoolElements()
{
if (GCustomResourcePool)
{
GCustomResourcePool->Tick();
}
}