Esempio n. 1
0
            public bool Equals(FilamentProfile.TypeColorKey b)
            {
                if ((ValueType)b == null || type != b.type)
                {
                    return(false);
                }

                return(color == b.color);
            }
Esempio n. 2
0
 public TypeColorKey(FilamentProfile.TypeColorKey other)
 {
     type  = other.type;
     color = other.color;
 }