Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jasonmcdermott
Created July 3, 2014 03:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasonmcdermott/49b539f19c660652e49d to your computer and use it in GitHub Desktop.
Save jasonmcdermott/49b539f19c660652e49d to your computer and use it in GitHub Desktop.
- (void)countDown
{
if (playing) {
timeLeft --;
if (timeLeft == 0) {
[self endGame];
}
}
[self updateLabels];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment