Files
FlaxEngine/Source/Tools/Flax.Build/Deploy/Configuration.cs
2021-01-02 14:28:49 +01:00

20 lines
577 B
C#

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