PKHeX/PKHeX.Core/Saves/Access/ISaveBlock7SM.cs
Kurt d47bb1d297
Update .NET Runtime to .NET 8.0 (#4082)
With the new version of Visual Studio bringing C# 12, we can revise our logic for better readability as well as use new methods/APIs introduced in the .NET 8.0 BCL.
2023-12-03 20:13:20 -08:00

7 lines
297 B
C#

namespace PKHeX.Core;
/// <summary>
/// Interface for Accessing named blocks within a Generation 7 save file.
/// </summary>
/// <remarks>Blocks specific for <see cref="SAV7SM"/> in addition to the <see cref="ISaveBlock7Main"/> blocks.</remarks>
public interface ISaveBlock7SM : ISaveBlock7Main;