Files
FlaxEngine/Source/Engine/Renderer/RendererAllocation.h
2024-06-24 23:19:01 +02:00

13 lines
343 B
C++

// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved.
#pragma once
#include "Engine/Core/Memory/SimpleHeapAllocation.h"
class RendererAllocation : public SimpleHeapAllocation<RendererAllocation, 64>
{
public:
static FLAXENGINE_API void* Allocate(uintptr size);
static FLAXENGINE_API void Free(void* ptr, uintptr size);
};