Files

13 lines
223 B
C#
Raw Normal View History

2026-01-08 16:50:20 +00:00
#if UNITY_EDITOR
namespace UnityEngine.Rendering
{
public interface IStripper
{
/// <summary>
/// Returns if the stripper is active
/// </summary>
bool active { get; }
}
}
#endif