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