Example #1
0
        /// <summary>
        ///
        /// </summary>
        public MouseClickCounter(int clickMax)
        {
            _timer = new UITimer(500, false, () =>
            {
                _location  = Point2D.Origin;
                ClickCount = 0;
            });

            _clickMax = clickMax;
        }
Example #2
0
 public State(UITimer self, object cookie) => (Self, Cookie) = (self, cookie);