CSPspEmu.Core.Types.OutputPixel.GetHashCode C# (CSharp) Method

GetHashCode() public method

public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return (R << 0) | (G << 8) | (B << 16) | (A << 24);
        }