StellarXipher/Library/PackageCache/com.unity.render-pipelines.core@1f7e2d13edc7/Runtime/Stripping/IStripper.cs
2025-02-06 17:03:40 -05:00

13 lines
223 B
C#

#if UNITY_EDITOR
namespace UnityEngine.Rendering
{
public interface IStripper
{
/// <summary>
/// Returns if the stripper is active
/// </summary>
bool active { get; }
}
}
#endif