public override int GetHashCode()
    {
        int hash = 1;

        if (Error != 0)
        {
            hash ^= Error.GetHashCode();
        }
        if (Succeed != false)
        {
            hash ^= Succeed.GetHashCode();
        }
        if (Seed != 0)
        {
            hash ^= Seed.GetHashCode();
        }
        if (FloorNumber != 0)
        {
            hash ^= FloorNumber.GetHashCode();
        }
        hash ^= playersInfo_.GetHashCode();
        if (_unknownFields != null)
        {
            hash ^= _unknownFields.GetHashCode();
        }
        return(hash);
    }