namespace FSO.Common.Rendering.Framework.IO { /// <summary> /// Represents an object that has depth /// </summary> public interface IDepthProvider { float Depth { get; } } }