2023-08-10 08:47:35 +00:00
|
|
|
|
namespace Server.Packets.SerializationUtilities;
|
2023-08-09 18:14:14 +00:00
|
|
|
|
|
|
|
|
|
public class FieldOffsetAttribute : Attribute
|
|
|
|
|
{
|
|
|
|
|
public int Offset { get; set; }
|
|
|
|
|
public int Size { get; set; }
|
|
|
|
|
|
|
|
|
|
public FieldOffsetAttribute(int offset, int size)
|
|
|
|
|
{
|
|
|
|
|
Offset = offset;
|
|
|
|
|
Size = size;
|
|
|
|
|
}
|
|
|
|
|
}
|