Example #1
0
        public override bool Equals(object obj)
        {
            if (!(obj is CakeRaceInfo))
            {
                return(false);
            }
            CakeRaceInfo other = (CakeRaceInfo)obj;

            return(this.Equals(other));
        }
Example #2
0
 public bool Equals(CakeRaceInfo other)
 {
     return(this.m_episodeIndex == other.m_episodeIndex && this.m_levelIndex == other.m_levelIndex && this.m_identifier == other.m_identifier && this.m_trackIndex == other.m_trackIndex);
 }