namespace PKHeX.Core; /// /// Simple interface representing a Save File viewer. /// public interface ISaveFileProvider { /// /// Retrieves the save file the has control over. /// SaveFile SAV { get; } /// /// Retrieves the current box the has control over. /// int CurrentBox { get; } /// /// Triggers a refresh of any individual view slots. /// void ReloadSlots(); }