SmoOnlineServer/Shared/Packet/PacketAttribute.cs

9 lines
247 B
C#
Raw Normal View History

2021-11-29 04:04:34 +00:00
namespace Shared.Packet;
2022-02-08 16:22:09 +00:00
[AttributeUsage(AttributeTargets.Struct, AllowMultiple = true)]
2021-11-29 04:04:34 +00:00
public class PacketAttribute : Attribute {
public PacketType Type { get; }
public PacketAttribute(PacketType type) {
Type = type;
}
}