예제 #1
0
 public static T MergeMeta <T>(this T container, PlayInfo?other) where T : IMetaContainer
 {
     container.PlayInfo = PlayInfo.Merge(container.PlayInfo, other);
     return(container);
 }
예제 #2
0
 public PlayInfo Merge(PlayInfo other) => Merge(this, other);