示例#1
0
 internal static void CopyRibbonSetEvent3(this IRibbonSetEvent3 set, IRibbonSetEvent3 dest)
 {
     dest.RibbonEarth            = set.RibbonEarth;
     dest.RibbonNational         = set.RibbonNational;
     dest.RibbonCountry          = set.RibbonCountry;
     dest.RibbonChampionBattle   = set.RibbonChampionBattle;
     dest.RibbonChampionRegional = set.RibbonChampionRegional;
     dest.RibbonChampionNational = set.RibbonChampionNational;
 }
示例#2
0
 internal static bool[] RibbonBits(this IRibbonSetEvent3 set)
 {
     return(new[]
     {
         set.RibbonEarth,
         set.RibbonNational,
         set.RibbonCountry,
         set.RibbonChampionBattle,
         set.RibbonChampionRegional,
         set.RibbonChampionNational,
     });
 }
示例#3
0
 internal static string[] RibbonNames(this IRibbonSetEvent3 _) => RibbonSetNamesEvent3;