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.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/Classes/FallingObject.h b/Classes/FallingObject.h new file mode 100755 index 0000000..a1ac56e --- /dev/null +++ b/Classes/FallingObject.h
@@ -0,0 +1,21 @@
1//
2// GameObject.h
3// Cart Collect
4//
5// Created by iD Student Account on 7/19/11.
6// Copyright 2011 __MyCompanyName__. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10#import "cocos2d.h"
11
12@interface FallingObject : NSObject {
13 CCSprite* sprite;
14 int weight;
15}
16
17@property (readonly) CCSprite* sprite;
18@property (readonly) int weight;
19- (id)init;
20
21@end