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