mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-16 00:52:41 -05: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);
|
|
}
|
|
} |