PKHeX/PKHeX.Core/Saves/Substructures/Gen6/Misc6XY.cs
Kurt fc754b346b
File scoped namespaces (#3529)
[Language Reference](https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-10.0/file-scoped-namespaces)

Updates all the files, one less level of indentation.

Some small changes were made to API surfaces, renaming `PKM pkm` -> `PKM pk`, and `LegalityAnalysis.pkm` -> `LegalityAnalysis.Entity`
2022-06-18 11:04:24 -07:00

33 lines
827 B
C#

using System;
using static System.Buffers.Binary.BinaryPrimitives;
namespace PKHeX.Core;
public sealed class Misc6XY : SaveBlock<SAV6XY>, IMisc6
{
public Misc6XY(SAV6XY sav, int offset) : base(sav) => Offset = offset;
public uint Money
{
get => ReadUInt32LittleEndian(Data.AsSpan(Offset + 0x8));
set => WriteUInt32LittleEndian(Data.AsSpan(Offset + 0x8), value);
}
public int Badges
{
get => Data[Offset + 0xC];
set => Data[Offset + 0xC] = (byte)value;
}
public int BP
{
get => ReadUInt16LittleEndian(Data.AsSpan(Offset + 0x3C));
set => WriteUInt16LittleEndian(Data.AsSpan(Offset + 0x3C), (ushort)value);
}
public int Vivillon
{
get => Data[Offset + 0x50];
set => Data[Offset + 0x50] = (byte)value;
}
}