Exemple #1
0
 public TActionRuntime(int duration, RuntimeCodeDelegate runtimeCode)
 {
     this.isInstant   = false;
     this.duration    = duration;
     this.runtimeCode = runtimeCode;
 }
Exemple #2
0
 public TActionRuntime()
 {
     this.isInstant   = false;
     this.duration    = 0;
     this.runtimeCode = null;
 }