blob: bd47c90d1528deca7c96c5cdba5ada2f4b863ec7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
//
// GameMode.h
// Cart Collect
//
// Created by Starla Insigna on 8/9/11.
// Copyright 2011 Four Island. All rights reserved.
//
#import "CCLayer.h"
#import "Cart.h"
#define GAME_SCENE 436
#define GAME_LAYER 437
@interface GameMode : CCLayer {
NSMutableSet* objects;
int score;
int lives;
Cart* cart;
}
@property (readonly) Cart* cart;
@property (assign) int score;
@property (assign) int lives;
- (void)tick:(ccTime)dt;
@end
|