示例#1
0
 public static Polyface IsStrategizedTouchable(this Polyface root, ILogic logic)
 {
     Condition.Requires(root).IsNotNull();
     var composited = new StrategizedTouchable(logic);
     root.IsHasTouchable(composited);
     return root;
 }
示例#2
0
        public static Polyface IsStrategizedTouchable(this Polyface root, ILogic logic)
        {
            Condition.Requires(root).IsNotNull();
            var composited = new StrategizedTouchable(logic);

            root.IsHasTouchable(composited);
            return(root);
        }