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

12 lines
294 B
C#
Raw Normal View History

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