public override void Compare(BeliefComponent other) { if (other.ReadyToCompare() && other.A > A) { this.R = other.R; this.G = other.G; } }
public override void Compare(BeliefComponent other) { if (other.ReadyToCompare() && other.R > Size) { this.B = other.B; this.G = other.G; } }
public abstract void Compare(BeliefComponent other);