continuity/Wonderking/Packets/Outgoing/ServerChannelData.cs

12 lines
275 B
C#
Raw Normal View History

2023-11-07 23:05:18 +01:00
using System.Runtime.InteropServices;
2023-11-06 10:11:36 +01:00
namespace Wonderking.Packets.Outgoing;
2023-11-07 23:05:18 +01:00
[StructLayout(LayoutKind.Auto)]
public struct ServerChannelData
{
public ushort ServerId { get; set; }
public ushort ChannelId { get; set; }
public byte LoadPercentage { get; set; }
2023-08-11 11:31:30 +02:00
}