mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
a bit
proper vending machines like fully, performance
This commit is contained in:
@@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
*/
|
||||
Reference in New Issue
Block a user