Exemplo n.º 1
0
 public static Suit GetWeakness(this Suit suit)
 {
     return(SuitExtensionMethods.Get(suit).weakness);
 }
Exemplo n.º 2
0
 public static bool IsWeakAgainst(this Suit suit, Suit other)
 {
     return(SuitExtensionMethods.Get(suit).weakness == other);
 }
Exemplo n.º 3
0
 public static string GetName(this Suit suit)
 {
     return(SuitExtensionMethods.Get(suit).name);
 }