continuity/Server/Packets/Outgoing/ServerChannelData.cs

9 lines
164 B
C#
Raw Normal View History

namespace Server.Packets.Outgoing;
public struct ServerChannelData
{
public ushort ServerId;
public ushort ChannelId;
public byte LoadPercentage;
2023-08-11 09:31:30 +00:00
}