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
274 B
C#
11 lines
274 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Provides details about box names within the save file.
|
|
/// </summary>
|
|
public interface IBoxDetailName
|
|
{
|
|
public string GetBoxName(int box);
|
|
public void SetBoxName(int box, string value);
|
|
}
|
|
}
|