using System.Collections.Generic;
namespace UnityEngine.Rendering
{
///
/// An interface for Volumes
///
public interface IVolume
{
///
/// Specifies whether to apply the Volume to the entire Scene or not.
///
bool isGlobal { get; set; }
///
/// The colliders of the volume if is false
///
List colliders { get; }
}
}