コード例 #1
0
        public override void Compare(BeliefComponent other)
        {
            if (other.ReadyToCompare() && other.A > A)
            {
                this.R = other.R;

                this.G = other.G;
            }
        }
コード例 #2
0
        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);