PKHeX/PKHeX.Core/Saves/Substructures/Gen8/SWSH/Party8.cs
Kurt 1370d9ab0f Merge SAV8 into SAV8SWSH
Was originally expected that gen8 was going to be a pair+revision generation, but with BDSP and PLA being totally different games, there's no need to have inheritance complicating a single SWSH class.
2022-03-05 17:34:09 -08:00

14 lines
333 B
C#

namespace PKHeX.Core
{
public sealed class Party8 : SaveBlock
{
public Party8(SAV8SWSH sav, SCBlock block) : base(sav, block.Data) { }
public int PartyCount
{
get => Data[6 * PokeCrypto.SIZE_8PARTY];
set => Data[6 * PokeCrypto.SIZE_8PARTY] = (byte)value;
}
}
}