namespace PKHeX.Core { /// /// Provides details about box wallpaper values within the save file. /// public interface IBoxDetailWallpaper { public int GetBoxWallpaper(int box); public void SetBoxWallpaper(int box, int value); } }