proper vending machines like fully, performance
This commit is contained in:
Milxnor
2023-05-08 22:28:32 -04:00
parent d5c95ac978
commit b64f569551
22 changed files with 399 additions and 221 deletions

View File

@@ -55,4 +55,27 @@ inline bool AreVehicleWeaponsEnabled()
inline bool IsRestartingSupported()
{
return Engine_Version >= 419 && Engine_Version < 424;
}
}
/*
enum class AllocatorType
{
VIRTUALALLOC,
FMEMORY
};
class InstancedAllocator
{
public:
AllocatorType allocatorType;
static void* Allocate(AllocatorType type, size_t Size);
void* Allocate(size_t Size)
{
return Allocate(allocatorType, Size);
}
};
*/