Files
Pilz/Pilz.Simple3DFileParser/Model/VertexColor.cs
2020-09-24 11:21:53 +02:00

11 lines
249 B
C#

namespace Pilz.S3DFileParser
{
public class VertexColor
{
public float R { get; set; } = 1f;
public float G { get; set; } = 1f;
public float B { get; set; } = 1f;
public float A { get; set; } = 1f;
}
}