PKHeX/PKHeX.Core/Saves/Substructures/Misc/IBoxDetailName.cs
Kurt 01fb233e48 Minor tweaks
Extract some interfaces
Suppress some warning messages with commented reasons if appropriate
2020-09-09 12:47:24 -07:00

11 lines
274 B
C#

namespace PKHeX.Core
{
/// <summary>
/// Provides details about box names within the save file.
/// </summary>
public interface IBoxDetailName
{
public string GetBoxName(int box);
public void SetBoxName(int box, string value);
}
}