13 lines
331 B
C#
13 lines
331 B
C#
|
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; }
|
||
|
}
|