Ejemplo n.º 1
0
 public ReactEvent(fn.ReactFunc rf, fn.EventFunc ef)
 {
     this.rf = rf;
     this.ef = ef;
 }
Ejemplo n.º 2
0
 //Events
 public static Event event1(int time, fn.EventFunc func)
 {
     return(new TimedEvent(time, func));
 }
Ejemplo n.º 3
0
 public static Event everntfunc(fn.ReactFunc rf, fn.EventFunc func)
 {
     return(new ReactEvent(rf, func));
 }
Ejemplo n.º 4
0
 public ReactEvent(fn.ReactFunc rf, fn.EventFunc ef)
 {
     this.rf = rf;
     this.ef = ef;
 }