untangle-puzzlegame/Library/PackageCache/com.unity.render-pipelines.core@e13fb214c240/Runtime/Stripping/IStripper.cs
2025-04-17 17:33:08 -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