PKHeX/PKHeX.Core/Legality/Formatting/ILegalityFormatter.cs
Kurt 3822981590
Rework EncounterCriteria to be ability indexed rather than direct ability (#3179)
* 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
2021-03-23 17:05:15 -07:00

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);
}
}