continuity/Wonderking/Packets/Outgoing/ServerChannelData.cs

12 lines
275 B
C#
Raw Normal View History

using System.Runtime.InteropServices;
namespace Wonderking.Packets.Outgoing;
[StructLayout(LayoutKind.Auto)]
public struct ServerChannelData
{
public ushort ServerId { get; set; }
public ushort ChannelId { get; set; }
public byte LoadPercentage { get; set; }
2023-08-11 09:31:30 +00:00
}