mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-20 07:27:25 -05:00
18 lines
517 B
C#
18 lines
517 B
C#
using System.ComponentModel;
|
|
using System.Runtime.InteropServices;
|
|
|
|
#pragma warning disable CS8618, CA1815, CA1819, IDE1006
|
|
namespace NHSE.Core
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Pack = 4)]
|
|
[TypeConverter(typeof(ValueTypeTypeConverter))]
|
|
public struct GSavePlayerId
|
|
{
|
|
public const int SIZE = 0x38;
|
|
public override string ToString() => $"{BaseId.Name}-{LandId.Name}";
|
|
|
|
public GSaveLandId LandId { get; set; }
|
|
public GSavePlayerBaseId BaseId { get; set; }
|
|
}
|
|
}
|