mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-17 16:03:10 +00:00
16 lines
336 B
C#
16 lines
336 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);
|
|||
|
|
|||
|
bool Execute(SaveFile SAV, BoxManipParam param);
|
|||
|
}
|
|||
|
}
|