예제 #1
0
        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;
            }
        }
예제 #3
0
 public abstract void Compare(BeliefComponent other);