/// <summary> /// /// </summary> public MouseClickCounter(int clickMax) { _timer = new UITimer(500, false, () => { _location = Point2D.Origin; ClickCount = 0; }); _clickMax = clickMax; }
public State(UITimer self, object cookie) => (Self, Cookie) = (self, cookie);