Files
CityBuilder/Library/PackageCache/com.unity.render-pipelines.core@2be5e7224a10/Runtime/Stripping/IStripper.cs
SHOUTING_PIRATE 1c91215efd initial commit
2025-07-07 20:59:04 +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