mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-04-09 10:56:04 -05:00
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>
25 lines
809 B
C#
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);
|
|
}
|