continuity/Wonderking/Packets/Outgoing/Data/ServerChannelData.cs

13 lines
362 B
C#

// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
using System.Runtime.InteropServices;
namespace Wonderking.Packets.Outgoing.Data;
[StructLayout(LayoutKind.Auto)]
public struct ServerChannelData
{
public ushort ServerId { get; set; }
public ushort ChannelId { get; set; }
public byte LoadPercentage { get; set; }
}