PKHeX/PKHeX.Core/Saves/Substructures/Misc/IBoxDetailName.cs

12 lines
274 B
C#
Raw Normal View History

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);
}
}