Esempio n. 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);
 }
Esempio n. 2
0
 public EffectLadder(EffectLadder copy)
     : this(copy.Id, copy.MonsterFamily, copy.MonsterCount, copy)
 {
 }
Esempio n. 3
0
 public EffectLadder(EffectLadder copy)
     : this (copy.Id, copy.MonsterFamily, copy.MonsterCount, copy)
 {
     
 }
Esempio n. 4
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;
 }