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