SmoOnlineServer/Shared/Packet/PacketAttribute.cs

9 lines
225 B
C#

namespace Shared.Packet;
[AttributeUsage(AttributeTargets.Struct)]
public class PacketAttribute : Attribute {
public PacketType Type { get; }
public PacketAttribute(PacketType type) {
Type = type;
}
}