Skip to content

Instantly share code, notes, and snippets.

@Tylerc230
Created June 27, 2011 21:54
Show Gist options
  • Save Tylerc230/1049948 to your computer and use it in GitHub Desktop.
Save Tylerc230/1049948 to your computer and use it in GitHub Desktop.
Adding dependency relationships to a Sequencer
sequencer_ = [[Sequencer alloc] init];
[sequencer_ addTarget:self action:@selector(parseUserData) dependencies:LSLoggedIn, LSUserDataDownloaded, LSEnd];
[sequencer_ addTarget:self action:@selector(startGame) dependencies:LSLoggedIn, LSAssetsLoaded, LSUserDataDownloaded, LSEnd];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment