PKHeX/PKHeX.Core/Legality/LearnSource/Sources/Shared/IReminderSource.cs
Kurt 03182ebd3d Update 22.11.24
Adds support for Scarlet & Violet.

Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com>
Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com>
Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
2022-11-24 17:42:17 -08:00

25 lines
809 B
C#

using System;
namespace PKHeX.Core;
/// <summary>
/// Exposes information about how special moves are learned via the move reminding interface.
/// </summary>
public interface IReminderSource
{
/// <summary>
/// Checks if the <see cref="move"/> can be learned.
/// </summary>
/// <param name="species">Entity base species</param>
/// <param name="form">Entity base form</param>
/// <param name="move">Move to check</param>
bool GetIsReminderMove(ushort species, byte form, ushort move);
/// <summary>
/// Gets the reminder move list that is permitted to be instructed.
/// </summary>
/// <param name="species">Entity base species</param>
/// <param name="form">Entity base form</param>
ReadOnlySpan<ushort> GetReminderMoves(ushort species, byte form);
}