SmoOnlineServer/Shared/Packet/PacketAttribute.cs

9 lines
225 B
C#
Raw Normal View History

2021-11-29 04:04:34 +00:00
namespace Shared.Packet;
[AttributeUsage(AttributeTargets.Struct)]
public class PacketAttribute : Attribute {
public PacketType Type { get; }
public PacketAttribute(PacketType type) {
Type = type;
}
}