summary refs log tree commit diff stats
path: root/Classes/FallingObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/FallingObject.h')
-rwxr-xr-xClasses/FallingObject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Classes/FallingObject.h b/Classes/FallingObject.h index d3ac638..d9406d5 100755 --- a/Classes/FallingObject.h +++ b/Classes/FallingObject.h
@@ -15,15 +15,15 @@
15 int weight; 15 int weight;
16 id<FallingObjectDelegate> delegate; 16 id<FallingObjectDelegate> delegate;
17 BOOL flags[4]; 17 BOOL flags[4];
18 int objectType;
18} 19}
19 20
20@property (readonly) CCSprite* sprite; 21@property (readonly) CCSprite* sprite;
21@property (readonly) int weight; 22@property (readonly) int weight;
23@property (readonly) int objectType;
22@property (nonatomic,retain) id<FallingObjectDelegate> delegate; 24@property (nonatomic,retain) id<FallingObjectDelegate> delegate;
23- (id)init; 25- (id)initWithSpriteFilename:(NSString*)filename weight:(int)weight objectType:(int)objectType;
24- (BOOL)tick; 26- (BOOL)tick;
25- (void)collideWithCart;
26- (void)collideWithFloor;
27- (BOOL)flag:(int)flag; 27- (BOOL)flag:(int)flag;
28- (void)setFlag:(int)flag withValue:(BOOL)value; 28- (void)setFlag:(int)flag withValue:(BOOL)value;
29 29