continuity/Wonderking/Packets/Outgoing/JobData.cs

13 lines
331 B
C#
Raw Normal View History

using System.Runtime.InteropServices;
namespace Wonderking.Packets.Outgoing;
[StructLayout(LayoutKind.Auto)]
public struct JobData
{
public required byte FirstJob { get; set; }
public required byte SecondJob { get; set; }
public required byte ThirdJob { get; set; }
public required byte FourthJob { get; set; }
}