This repository has been archived on 2026-05-22. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Diamond/Diamond/Buffers/VertexDataAttribute.cs

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()
{
}
}
}