mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
fc754b346b
[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`
33 lines
827 B
C#
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;
|
|
}
|
|
}
|