33617a702a
v3.1.0
22 lines
497 B
C#
22 lines
497 B
C#
// Copyright (c) Wojciech Figat. All rights reserved.
|
|
|
|
using Flax.Build;
|
|
|
|
/// <summary>
|
|
/// https://github.com/GPUOpen-LibrariesAndSDKs/D3D12MemoryAllocator
|
|
/// </summary>
|
|
public class D3D12MemoryAllocator : HeaderOnlyModule
|
|
{
|
|
/// <inheritdoc />
|
|
public override void Init()
|
|
{
|
|
base.Init();
|
|
|
|
LicenseType = LicenseTypes.MIT;
|
|
LicenseFilePath = "LICENSE.txt";
|
|
|
|
// Merge third-party modules into engine binary
|
|
BinaryModuleName = "FlaxEngine";
|
|
}
|
|
}
|