PKHeX/PKHeX.Core/Saves/Substructures/Gen8/SWSH/Box8.cs
Kurt a681783f1a Extract interface for SaveBlock, allow strict
External users shouldn't be using SaveBlock
2022-04-15 11:45:04 -07:00

8 lines
168 B
C#

namespace PKHeX.Core
{
public sealed class Box8 : SaveBlock<SaveFile>
{
public Box8(SaveFile sav, SCBlock block) : base(sav, block.Data) { }
}
}