Beispiel #1
0
        public void Copy(BehaviourModeRuleLinkObject _object)
        {
            if (_object == null)
            {
                return;
            }

            base.Copy(_object);

            Type             = _object.Type;
            BehaviourModeKey = _object.BehaviourModeKey;
            RuleIndex        = _object.RuleIndex;
        }
Beispiel #2
0
 public BehaviourModeRuleLinkObject(BehaviourModeRuleLinkObject _link) : base(_link as ICEOwnerObject)
 {
     Copy(_link);
 }