SmoOnlineServer/Shared/Packet/PacketAttribute.cs

10 lines
247 B
C#

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