public bool Equals(SaveDataAttribute other) { return(TitleId == other.TitleId && Type == other.Type && UserId.Equals(other.UserId) && SaveDataId == other.SaveDataId && Rank == other.Rank && Index == other.Index); }
public readonly bool Equals(SaveDataAttribute other) { return(ProgramId == other.ProgramId && Type == other.Type && UserId.Equals(other.UserId) && StaticSaveDataId == other.StaticSaveDataId && Rank == other.Rank && Index == other.Index); }
public bool Equals(SaveDataStruct other) { return(other != null && TitleId == other.TitleId && UserId.Equals(other.UserId) && SaveId == other.SaveId && Type == other.Type && Rank == other.Rank && Index == other.Index); }