mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 18:02:23 +00:00
11 lines
209 B
C#
11 lines
209 B
C#
|
namespace FSO.Common.Rendering.Framework.IO
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Represents an object that has depth
|
|||
|
/// </summary>
|
|||
|
public interface IDepthProvider
|
|||
|
{
|
|||
|
float Depth { get; }
|
|||
|
}
|
|||
|
}
|