mirror of
https://github.com/kwsch/PKHeX
synced 2024-12-25 20:03:12 +00:00
18 lines
506 B
C#
18 lines
506 B
C#
|
namespace PKHeX.Core;
|
||
|
|
||
|
/// <summary> Common Ribbons introduced in Generation 9 </summary>
|
||
|
public interface IRibbonSetCommon9
|
||
|
{
|
||
|
bool RibbonChampionPaldea { get; set; }
|
||
|
bool RibbonOnceInALifetime { get; set; }
|
||
|
}
|
||
|
|
||
|
internal static partial class RibbonExtensions
|
||
|
{
|
||
|
internal static void CopyRibbonSetCommon9(this IRibbonSetCommon9 set, IRibbonSetCommon9 dest)
|
||
|
{
|
||
|
dest.RibbonChampionPaldea = set.RibbonChampionPaldea;
|
||
|
dest.RibbonOnceInALifetime = set.RibbonOnceInALifetime;
|
||
|
}
|
||
|
}
|