mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-05 19:25:04 +00:00
9 lines
225 B
C#
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;
|
|||
|
}
|
|||
|
}
|