continuity/Server/Packets/Outgoing/ServerChannelData.cs

8 lines
163 B
C#
Raw Normal View History

namespace Server.Packets.Outgoing;
public struct ServerChannelData
{
public ushort ServerId;
public ushort ChannelId;
public byte LoadPercentage;
}