mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-05 11:15:04 +00:00
10 lines
No EOL
247 B
C#
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; }
|
|
} |