smrendererv3/SMCode/SM.OGL/Mesh/ILineMesh.cs
2021-03-17 17:09:59 +01:00

13 lines
No EOL
277 B
C#

namespace SM.OGL.Mesh
{
/// <summary>
/// Represents a mesh that can be a line object.
/// </summary>
public interface ILineMesh
{
/// <summary>
/// The width of a line.
/// </summary>
float LineWidth { get; set; }
}
}