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
17 lines
No EOL
792 B
C#
17 lines
No EOL
792 B
C#
using System;
|
|
|
|
namespace PKHeX.Core
|
|
{
|
|
public sealed class BoxManipModifyComplex : BoxManipBase
|
|
{
|
|
private readonly Action<PKM, SaveFile> Action;
|
|
public BoxManipModifyComplex(BoxManipType type, Action<PKM, SaveFile> action) : this(type, action, _ => true) { }
|
|
public BoxManipModifyComplex(BoxManipType type, Action<PKM, SaveFile> action, Func<SaveFile, bool> usable) : base(type, usable) => Action = action;
|
|
|
|
public override string GetPrompt(bool all) => string.Empty;
|
|
public override string GetFail(bool all) => string.Empty;
|
|
public override string GetSuccess(bool all) => string.Empty;
|
|
|
|
public override int Execute(SaveFile sav, BoxManipParam param) => sav.ModifyBoxes(pk => Action(pk, sav), param.Start, param.Stop);
|
|
}
|
|
} |