PKHeX/PKHeX.Core/Saves/Substructures/Misc/IBoxDetailWallpaper.cs
Kurt 01fb233e48 Minor tweaks
Extract some interfaces
Suppress some warning messages with commented reasons if appropriate
2020-09-09 12:47:24 -07:00

11 lines
294 B
C#

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