// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.
using Flax.Build;
///
/// https://github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator
///
public class VulkanMemoryAllocator : HeaderOnlyModule
{
///
public override void Init()
{
base.Init();
LicenseType = LicenseTypes.MIT;
LicenseFilePath = "LICENSE.txt";
// Merge third-party modules into engine binary
BinaryModuleName = "FlaxEngine";
}
}