0
0
Fork 0
mirror of https://github.com/Sanae6/SmoOnlineServer.git synced 2024-11-05 11:15:04 +00:00
SmoOnlineServer/Shared/Packet/PacketAttribute.cs
2022-02-09 19:44:50 -06:00

10 lines
No EOL
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; }
}