duck

duck

May 21st, 2010
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1.  
  2. function Start() {
  3.     // start the missile checker function:
  4.     MissileCheck();
  5. }
  6.  
  7. function MissileCheck() {
  8.     while (true) {
  9.         yield WaitForSeconds(1);
  10.  
  11.         // any code here will execute once per second.
  12.  
  13.     }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment