14 lines
307 B
C#
14 lines
307 B
C#
using System;
|
|
|
|
namespace Diamond.Buffers
|
|
{
|
|
[AttributeUsage(AttributeTargets.Struct, Inherited = false, AllowMultiple = false)]
|
|
public sealed class VertexDataAttribute : Attribute
|
|
{
|
|
public int Divisor { get; set; } = 0;
|
|
|
|
public VertexDataAttribute()
|
|
{
|
|
}
|
|
}
|
|
} |