PSO2SERVER/Server/Models/ShipData.cs

32 lines
665 B
C#
Raw Normal View History

2024-09-10 00:31:40 +08:00
using System;
using System.Runtime.InteropServices;
2024-09-10 01:13:20 +08:00
namespace PSO2SERVER.Models
2024-09-10 00:31:40 +08:00
{
public enum ShipStatus : ushort
{
Unknown = 0,
Online,
Busy,
Full,
Offline
}
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)]
public unsafe struct ShipEntry
{
public UInt32 number;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 16)]
public string name;
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 4)]
public byte[] ip;
public UInt32 zero;
public ShipStatus status;
public UInt16 order;
public UInt32 unknown;
}
}