PKHeX/PKHeX.Core/PersonalInfo/PersonalInfoB2W2.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

36 lines
1 KiB
C#

using System;
namespace PKHeX.Core;
/// <summary>
/// <see cref="PersonalInfo"/> class with values from the Black 2 &amp; White 2 games.
/// </summary>
public sealed class PersonalInfoB2W2 : PersonalInfoBW
{
public new const int SIZE = 0x4C;
public PersonalInfoB2W2(byte[] data) : base(data)
{
// Unpack TMHM & Tutors
TMHM = GetBits(Data.AsSpan(0x28, 0x10));
TypeTutors = GetBits(Data.AsSpan(0x38, 0x4));
SpecialTutors = new[]
{
GetBits(Data.AsSpan(0x3C, 0x04)),
GetBits(Data.AsSpan(0x40, 0x04)),
GetBits(Data.AsSpan(0x44, 0x04)),
GetBits(Data.AsSpan(0x48, 0x04)),
};
}
public override byte[] Write()
{
SetBits(TMHM, Data.AsSpan(0x28));
SetBits(TypeTutors, Data.AsSpan(0x38));
SetBits(SpecialTutors[0], Data.AsSpan(0x3C));
SetBits(SpecialTutors[1], Data.AsSpan(0x40));
SetBits(SpecialTutors[2], Data.AsSpan(0x44));
SetBits(SpecialTutors[3], Data.AsSpan(0x48));
return Data;
}
}