XCom.Palette.Equals C# (CSharp) Method

Equals() public method

tests for palette equality
public Equals ( Object other ) : bool
other Object another palette
return bool
		public override bool Equals(Object other)
		{
			if(!(other is Palette))
				return false;
			return this.cp.Equals(((Palette)other).cp);
		}