mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-27 11:12:14 -05:00
Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
13 lines
297 B
C#
13 lines
297 B
C#
namespace PKHeX.Core;
|
|
|
|
public sealed class Party8a : SaveBlock
|
|
{
|
|
public Party8a(SAV8LA sav, SCBlock block) : base(sav, block.Data) { }
|
|
|
|
public int PartyCount
|
|
{
|
|
get => Data[6 * PokeCrypto.SIZE_8APARTY];
|
|
set => Data[6 * PokeCrypto.SIZE_8APARTY] = (byte)value;
|
|
}
|
|
}
|