示例#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
 public void SetDelay(long d)
 {
     timer.SetDelay(d);
 }
示例#5
0
 public virtual RealtimeProcess Sleep(long delay)
 {
     timer.SetDelay(delay);
     return(this);
 }