Exemplo n.º 1
0
 public HandledTouchEventArgs(IInteractiveInterface handler, Vector2 cursorPosition)
     : base(handler)
 {
     CursorPosition = cursorPosition;
 }
Exemplo n.º 2
0
 public HandledDirectionEventArgs(IInteractiveInterface handler, Vector2 direction)
     : base(handler)
 {
     Direction = direction;
 }
Exemplo n.º 3
0
 public HandledEventArgs(IInteractiveInterface handler)
 {
     Handler = handler;
 }