summary refs log tree commit diff stats
path: root/Classes/GameMode.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/GameMode.h')
-rw-r--r--Classes/GameMode.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/Classes/GameMode.h b/Classes/GameMode.h index ae3fbe5..6421099 100644 --- a/Classes/GameMode.h +++ b/Classes/GameMode.h
@@ -17,10 +17,7 @@
17 17
18@interface GameMode : CCLayer <UIAlertViewDelegate, CartDelegate, CCStandardTouchDelegate> { 18@interface GameMode : CCLayer <UIAlertViewDelegate, CartDelegate, CCStandardTouchDelegate> {
19 NSMutableSet* objects; 19 NSMutableSet* objects;
20 int score; 20 Cart* cart;
21 int lives;
22 int pointMultiplier;
23 Cart* cart;
24 FallingObjectFactory* objectFactory; 21 FallingObjectFactory* objectFactory;
25 22
26 CCLayerColor* willPauseLayer; 23 CCLayerColor* willPauseLayer;
@@ -29,9 +26,6 @@
29 BOOL isPaused; 26 BOOL isPaused;
30 BOOL isPausing; 27 BOOL isPausing;
31 28
32 CCLabelBMFont* scoreLabel;
33 CCLabelBMFont* livesLabel;
34
35 void (^delayedAction)(void); 29 void (^delayedAction)(void);
36 30
37 BOOL hasGyroscope; 31 BOOL hasGyroscope;
@@ -43,10 +37,6 @@
43} 37}
44 38
45@property (readonly) Cart* cart; 39@property (readonly) Cart* cart;
46@property (nonatomic,assign) int score;
47@property (nonatomic,assign) int lives;
48@property (nonatomic,assign) int pointMultiplier;
49@property (readonly) BOOL isPaused;
50- (void)tick:(ccTime)dt; 40- (void)tick:(ccTime)dt;
51- (BOOL)canPause; 41- (BOOL)canPause;
52- (void)pause; 42- (void)pause;