mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-23 19:56:22 -05:00
22 lines
522 B
C#
22 lines
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
|
|
}
|
|
} |