mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-13 06:02:36 +00:00
12 lines
294 B
C#
12 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);
|
|||
|
}
|
|||
|
}
|