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