Exemple #1
0
 public ButtonPressedAction(Buttons button, ButtonActionHandler buttonActionHandler)
     : base(button, buttonActionHandler)
 {
 }
Exemple #2
0
 public ButtonUpAction(Buttons button, ButtonActionHandler buttonActionHandler)
     : base(button, buttonActionHandler)
 {
 }
Exemple #3
0
 public ButtonAction(Buttons button, ButtonActionHandler buttonActionHandler)
 {
     _button = button;
     _buttonActionHandler = buttonActionHandler;
 }