Files
Caleb Sandford deQuincey ecdd3e2a9e intial commit
2025-06-27 23:27:49 +01: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