mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-12 06:37:20 -05:00
* Exploration: rework ability criteria to ability numbers desired * Sync remaining changes * Update EncounterCriteria.cs * Add xmldoc * Improve speed of IsDualGender check * More xmldoc updates Should be doing this on main but meh, this branch is gonna get merged later * Fix typo * Update WC7.cs * Update PersonalInfo.cs
19 lines
510 B
C#
19 lines
510 B
C#
namespace PKHeX.Core
|
|
{
|
|
/// <summary>
|
|
/// Formats legality results into a <see cref="T:System.String"/> for display.
|
|
/// </summary>
|
|
public interface ILegalityFormatter
|
|
{
|
|
/// <summary>
|
|
/// Gets a small summary of the legality analysis.
|
|
/// </summary>
|
|
string GetReport(LegalityAnalysis l);
|
|
|
|
/// <summary>
|
|
/// Gets a verbose summary of the legality analysis.
|
|
/// </summary>
|
|
string GetReportVerbose(LegalityAnalysis l);
|
|
}
|
|
}
|