Tick() 공개 메소드

public Tick ( ) : void
리턴 void
예제 #1
0
 private static void FWait(World world, string str)
 {
     int ticks = Convert.ToInt32(Regex.Match(str, @"\(.*?\)").Value.Replace("(", "").Replace(")", "").Trim());
     for (int i = 0; i < ticks; i++)
     {
         world.Tick();
     }
 }