CelticCraft/Plugins/VoxelFree/Source/Voxel/Public/VoxelContainers/NoGrowArray.h

11 lines
285 B
C
Raw Normal View History

2023-07-03 16:17:13 +00:00
// Copyright 2020 Phyronnaz
#pragma once
#include "CoreMinimal.h"
template<typename T, typename TAllocator = FDefaultAllocator>
using TNoGrowArray = TArray<T, TAllocator>;
template<typename T, typename TAllocator = FDefaultAllocator64>
using TNoGrowArray64 = TArray<T, TAllocator>;