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