Skip to content

Instantly share code, notes, and snippets.

@kb10uy
Created August 4, 2014 09:34
Show Gist options
  • Select an option

  • Save kb10uy/7cb951868781658cc56b to your computer and use it in GitHub Desktop.

Select an option

Save kb10uy/7cb951868781658cc56b to your computer and use it in GitHub Desktop.
public void Run() {
var ie=Coroutine();
while(true) {
ie.MoveNext();
}
}
public IEnumerator<bool> Coroutine() {
yellow.RaiseAsync(Side.Left);
brown.RaiseAsync(Side.Right);
for(int i=0;i<60;i++) yield return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment