mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
12 lines
265 B
C#
12 lines
265 B
C#
namespace PKHeX.Core;
|
|
|
|
/// <summary>
|
|
/// Allows resetting the moveset back to an initial state.
|
|
/// </summary>
|
|
public interface IMoveReset
|
|
{
|
|
/// <summary>
|
|
/// Resets the current moves to the current level up set.
|
|
/// </summary>
|
|
void ResetMoves();
|
|
}
|