mirror of
https://github.com/Sanae6/SmoOnlineServer.git
synced 2024-11-15 16:15:06 +00:00
6 lines
151 B
C#
6 lines
151 B
C#
|
namespace Shared.Packet.Packets;
|
|||
|
|
|||
|
[Packet(PacketType.Connect)]
|
|||
|
public struct ConnectPacket : IPacket {
|
|||
|
public ConnectionTypes ConnectionType;
|
|||
|
}
|