Files
2025-11-30 08:35:03 +02:00

13 lines
216 B
C#

namespace Needle.Engine
{
public interface IBuildContext
{
bool IsDistributionBuild { get; }
bool ViaContextMenu { get; }
}
public interface IHasBuildContext
{
IBuildContext BuildContext { get; }
}
}