PKHeX/PKHeX.Core/Saves/Substructures/Gen8/Misc8.cs
Kurt ab0b8979e9
Add swsh content placeholders (#2392)
placeholder content until real data is dumped
2019-09-23 16:56:47 -07:00

22 lines
No EOL
522 B
C#

using System;
namespace PKHeX.Core
{
public sealed class Misc8 : SaveBlock
{
public Misc8(SAV8 sav, int offset) : base(sav) => Offset = offset;
public uint Money
{
get => BitConverter.ToUInt32(Data, Offset + 0x4);
set
{
if (value > 9999999)
value = 9999999;
SAV.SetData(BitConverter.GetBytes(value), Offset + 0x4);
}
}
public int Vivillon { get; set; } // todo
}
}