mysimulation/server/tso.common/Rendering/Framework/IO/IDepthProvider.cs

11 lines
209 B
C#
Raw Permalink Normal View History

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