mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 12:33:06 +00:00
01fb233e48
Extract some interfaces Suppress some warning messages with commented reasons if appropriate
11 lines
294 B
C#
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);
|
|
}
|
|
}
|