Move SWSH save abstractions to subfolder

This commit is contained in:
Kurt
2022-02-04 17:22:33 -08:00
parent 4c280c4c6d
commit 752ddc1a88
19 changed files with 3 additions and 3 deletions

View File

@@ -162,7 +162,7 @@ public int Language
}
}
private Span<byte> OT_Trash =>Data.AsSpan(0xB0, 0x1A);
private Span<byte> OT_Trash => Data.AsSpan(0xB0, 0x1A);
public string OT
{

View File

@@ -2,7 +2,7 @@
{
public sealed class Party8 : SaveBlock
{
public Party8(SaveFile sav, SCBlock block) : base(sav, block.Data) { }
public Party8(SAV8 sav, SCBlock block) : base(sav, block.Data) { }
public int PartyCount
{
@@ -10,4 +10,4 @@ public int PartyCount
set => Data[6 * PokeCrypto.SIZE_8PARTY] = (byte)value;
}
}
}
}