Skip to content

Instantly share code, notes, and snippets.

@jasonmcdermott
Created July 3, 2014 03:46
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/c2fccab3f863a4c017ca to your computer and use it in GitHub Desktop.
Save jasonmcdermott/c2fccab3f863a4c017ca to your computer and use it in GitHub Desktop.
#import "CCViewController.h"
@interface CCViewController ()
{
int score,lives,highScore,timeLeft;
BOOL playing;
}
@property (weak, nonatomic) IBOutlet UIButton *hitMeButton;
@property (weak, nonatomic) IBOutlet UIButton *loseLifeButton;
@property (weak, nonatomic) IBOutlet UIButton *playPauseButton;
@property (weak, nonatomic) IBOutlet UIButton *resetButton;
@property (weak, nonatomic) IBOutlet UIButton *addTimeButton;
@property (weak, nonatomic) IBOutlet UILabel *highScoreLabel;
@property (weak, nonatomic) IBOutlet UILabel *scoreLabel;
@property (weak, nonatomic) IBOutlet UILabel *livesLabel;
@property (weak, nonatomic) IBOutlet UILabel *timeLeftLabel;
@end
@implementation CCViewController
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment