mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 00:58:01 +00:00
d3dd4fb2a5
Sorting will always show multiples of boxcount since it repositions empty slots
16 lines
No EOL
335 B
C#
16 lines
No EOL
335 B
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public interface IBoxManip
|
|
{
|
|
BoxManipType Type { get; }
|
|
Func<SaveFile, bool> Usable { get; set; }
|
|
|
|
string GetPrompt(bool all);
|
|
string GetFail(bool all);
|
|
string GetSuccess(bool all);
|
|
|
|
int Execute(SaveFile SAV, BoxManipParam param);
|
|
}
|
|
} |