예제 #1
0
 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);
 }
예제 #2
0
 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);
 }
예제 #3
0
 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);
 }