namespace PKHeX.Core
{
///
/// Formats legality results into a for display.
///
public interface ILegalityFormatter
{
///
/// Gets a small summary of the legality analysis.
///
string GetReport(LegalityAnalysis l);
///
/// Gets a verbose summary of the legality analysis.
///
string GetReportVerbose(LegalityAnalysis l);
}
}