mirror of
https://github.com/kwsch/NHSE.git
synced 2026-04-18 22:47:24 -05:00
15 lines
422 B
C#
15 lines
422 B
C#
using System.ComponentModel;
|
|
using System.Runtime.InteropServices;
|
|
|
|
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; }
|
|
} |