public bool Equals(EffectInteger other) { if (ReferenceEquals(null, other)) { return(false); } if (ReferenceEquals(this, other)) { return(true); } return(base.Equals(other) && other.m_value == m_value); }
public bool Equals(EffectInteger other) { if (ReferenceEquals(null, other)) return false; if (ReferenceEquals(this, other)) return true; return base.Equals(other) && other.m_value == m_value; }
public EffectInteger(EffectInteger copy) : this(copy.Id, copy.Value, copy) { }