Example #1
0
 public bool Equals(EffectLadder other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(base.Equals(other) && other.m_monsterCount == m_monsterCount);
 }
Example #2
0
 public EffectLadder(EffectLadder copy)
     : this(copy.Id, copy.MonsterFamily, copy.MonsterCount, copy)
 {
 }
Example #3
0
 public bool Equals(EffectLadder other)
 {
     return(!object.ReferenceEquals(null, other) && (object.ReferenceEquals(this, other) || (base.Equals(other) && other.m_monsterCount == this.m_monsterCount)));
 }