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