// // GameObject.h // Cart Collect // // Created by iD Student Account on 7/19/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import #import "cocos2d.h" @interface FallingObject : NSObject { CCSprite* sprite; int weight; } @property (readonly) CCSprite* sprite; @property (readonly) int weight; - (id)init; @end