Files
Project-Reboot-3.0/Project Reboot 3.0/DelegateBase.h
Milxnor 0d7b45cbbc a bit
start work on vending machines, fix some playlist specific things, fixed a bug with <s5 playlist looting,
2023-04-08 19:05:06 -04:00

20 lines
380 B
C++

#pragma once
#include "inc.h"
/*
typedef TAlignedBytes<16, 16> FAlignedInlineDelegateType;
#if USE_SMALL_DELEGATES
typedef FHeapAllocator FDelegateAllocatorType;
#else
typedef TInlineAllocator<2> FDelegateAllocatorType;
#endif
*/
class FDelegateBase
{
public:
// FDelegateAllocatorType::ForElementType<FAlignedInlineDelegateType> DelegateAllocator;
// int32 DelegateSize;
};