Skip to content

Instantly share code, notes, and snippets.

@jasonmcdermott
Last active August 29, 2015 14:03
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/63575e41e698cbfca8f2 to your computer and use it in GitHub Desktop.
Save jasonmcdermott/63575e41e698cbfca8f2 to your computer and use it in GitHub Desktop.
//
// CCHelper.h
// jason-wednesday
//
// Created by codeCamp on 9/07/2014.
// Copyright (c) 2014 codeCamp. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface CCHelper : NSObject
+ (int)getHighScore;
+ (void)setHighScore:(int)score;
+ (void)setLabel:(UILabel*)label textValue:(NSString *)text;
+ (int)getRandomIntInRange:(int)upperLimit;
+ (float)getRandomFloatInRange:(int)upperLimit;
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment