Пример #1
0
 public PointingEvent(ControllerEvent evnt, int x, int y)
     : base(evnt)
 {
     X = x;
     Y = y;
 }
Пример #2
0
 public MotionEvent(ControllerEvent evnt, int motion)
     : base(evnt)
 {
     Motion = motion;
 }
Пример #3
0
 public PressedEvent(ControllerEvent evnt)
     : base(evnt)
 {
 }
Пример #4
0
 public ClickEvent(ControllerEvent evnt)
     : base(evnt)
 {
 }
Пример #5
0
 public BasicEvent(ControllerEvent evnt)
 {
     ControllerEvent = evnt;
 }