PKHeX/PKHeX.Core/Saves/Substructures/Gen8/Party8.cs

13 lines
332 B
C#
Raw Normal View History

2019-11-16 01:34:18 +00:00
namespace PKHeX.Core
{
public sealed class Party8 : SaveBlock
{
public Party8(SaveFile sav, SCBlock block) : base(sav, block.Data) { }
public int PartyCount
{
get => Data[6 * PokeCrypto.SIZE_8PARTY];
set => Data[6 * PokeCrypto.SIZE_8PARTY] = (byte)value;
2019-11-16 01:34:18 +00:00
}
}
}