nexusforever/Source/NexusForever.Shared/GameTable/GameTableFieldArrayAttribute.cs
2018-10-09 12:03:35 +13:00

15 lines
320 B
C#

using System;
namespace NexusForever.Shared.GameTable
{
[AttributeUsage(AttributeTargets.Field)]
public class GameTableFieldArrayAttribute : Attribute
{
public uint Length { get; }
public GameTableFieldArrayAttribute(uint length)
{
Length = length;
}
}
}