// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved. namespace Flax.Build { public static partial class Configuration { /// /// Builds and packages the editor. /// [CommandLine("deployEditor", "Builds and packages the editor.")] public static bool DeployEditor; /// /// Builds and packages the platforms data. /// [CommandLine("deployPlatforms", "Builds and packages the platforms data.")] public static bool DeployPlatforms; } }