Example #1
0
 public static bool SharesAny <T>(this GameObject obj, GameObject other)
     where T : struct, IFormattable, IConvertible, IComparable
 {
     return(MultiTags <T> .SharesAny(obj, other));
 }
Example #2
0
 public static bool SharesAny <T>(this Component cmp, Component other)
     where T : struct, IFormattable, IConvertible, IComparable
 {
     return(MultiTags <T> .SharesAny(cmp, other));
 }