mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 00:37:11 +00:00
2cdb5d26db
rename things to be a little more consistent in naming conventions
16 lines
No EOL
330 B
C#
16 lines
No EOL
330 B
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public interface IBoxManip
|
|
{
|
|
BoxManipType Type { get; }
|
|
Func<SaveFile, bool> Usable { get; }
|
|
|
|
string GetPrompt(bool all);
|
|
string GetFail(bool all);
|
|
string GetSuccess(bool all);
|
|
|
|
int Execute(SaveFile sav, BoxManipParam param);
|
|
}
|
|
} |