Files
henrik karlsson 8f20bd5cee [RenderCore]
* Moved dllexport from types to methods/staticvars

#rb none (approved by cwaters)

[CL 25902670 by henrik karlsson in ue5-main branch]
2023-06-09 16:04:27 -04:00

17 lines
409 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
class FRHICommandListImmediate;
class ICustomResourcePool
{
public:
virtual ~ICustomResourcePool() {}
virtual void Tick(FRHICommandListImmediate& RHICmdList) = 0;
static RENDERCORE_API void TickPoolElements(FRHICommandListImmediate& RHICmdList);
};
extern RENDERCORE_API ICustomResourcePool* GCustomResourcePool;