Net-Game/Library/PackageCache/com.unity.render-pipelines.core@e13fb214c240/Runtime/Stripping/IStripper.cs
2025-03-28 08:33:16 -04: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