コード例 #1
0
 public static bool IsNonSeniorMatch(this Match.MatchType t)
 {
     return(!(t.IsLeagueMatch() || t.IsCupMatch() || t.IsQualifierMatch() || t.IsFriendlyMatch() || t.IsOtherSeniorMatch()));
 }
コード例 #2
0
 public static bool IsCompetitiveSeniorMatch(this Match.MatchType t)
 {
     return(t.IsLeagueMatch() || t.IsCupMatch() || t.IsQualifierMatch() || t.IsOtherSeniorMatch());
 }