mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
d47bb1d297
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.
7 lines
301 B
C#
7 lines
301 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Interface for Accessing named blocks within a Generation 8 save file.
|
|
/// </summary>
|
|
/// <remarks>Blocks specific for <see cref="SAV8SWSH"/> in addition to the <see cref="ISaveBlock8Main"/> blocks.</remarks>
|
|
public interface ISaveBlock8SWSH : ISaveBlock8Main;
|