// Copyright (c) 2012-2024 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; using Flax.Build; /// /// https://fmt.dev/ /// public class fmt : ThirdPartyModule { /// public override void Init() { base.Init(); LicenseType = LicenseTypes.Custom; LicenseFilePath = "LICENSE.rst"; // Merge third-party modules into engine binary BinaryModuleName = "FlaxEngine"; } /// public override void GetFilesToDeploy(List files) { base.GetFilesToDeploy(files); files.AddRange(Directory.GetFiles(FolderPath, "*.h", SearchOption.AllDirectories)); } }