continuity/Continuity.AuthServer/PacketHandlers/CharacterMappingItemEntry.cs

12 lines
327 B
C#
Raw Normal View History

2024-02-07 15:40:36 +00:00
// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
2023-11-20 18:58:30 +00:00
using System.Runtime.InteropServices;
namespace Continuity.AuthServer.PacketHandlers;
[StructLayout(LayoutKind.Auto)]
public struct CharacterMappingItemEntry {
public required ushort Id { get; set; }
public required ushort Quantity { get; set; }
}