mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
03182ebd3d
Adds support for Scarlet & Violet. Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
12 lines
298 B
C#
12 lines
298 B
C#
namespace PKHeX.Core;
|
|
|
|
public sealed class Party9 : SaveBlock<SAV9SV>
|
|
{
|
|
public Party9(SAV9SV sav, SCBlock block) : base(sav, block.Data) { }
|
|
|
|
public int PartyCount
|
|
{
|
|
get => Data[6 * PokeCrypto.SIZE_9PARTY];
|
|
set => Data[6 * PokeCrypto.SIZE_9PARTY] = (byte)value;
|
|
}
|
|
}
|