mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-16 17:18:00 +00:00
1e377c2963
no functional change (assumed)
23 lines
622 B
C#
23 lines
622 B
C#
namespace PKHeX.Core
|
|
{
|
|
internal class RibbonResult
|
|
{
|
|
/// <summary>Ribbon Display Name</summary>
|
|
public string Name { get; private set; }
|
|
|
|
/// <summary>Ribbon should not be present.</summary>
|
|
/// <remarks>If this is false, the Ribbon is missing.</remarks>
|
|
public bool Invalid { get; }
|
|
|
|
public RibbonResult(string prop, bool invalid = true)
|
|
{
|
|
Name = RibbonStrings.GetName(prop) ?? prop;
|
|
Invalid = invalid;
|
|
}
|
|
|
|
public void Combine(RibbonResult other)
|
|
{
|
|
Name += $" / {other.Name}";
|
|
}
|
|
}
|
|
}
|