예제 #1
0
파일: Actor.cs 프로젝트: zx8326123/LGame
 public virtual void SetDelay(long delay)
 {
     timer.SetDelay(delay);
 }
예제 #2
0
 public void SetAutoDelay(long d)
 {
     autoTimer.SetDelay(d);
 }
예제 #3
0
 public void SetDelay(long timer)
 {
     delay.SetDelay(timer);
 }
예제 #4
0
파일: ActionEvent.cs 프로젝트: vb0067/LGame
 public void SetDelay(long d)
 {
     timer.SetDelay(d);
 }
예제 #5
0
 public virtual RealtimeProcess Sleep(long delay)
 {
     timer.SetDelay(delay);
     return(this);
 }