// // GameObject.h // Cart Collect // // Created by iD Student Account on 7/19/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import #import "cocos2d.h" #import "FallingObjectDelegate.h" @interface FallingObject : NSObject { CCSprite* sprite; int weight; id delegate; } @property (readonly) CCSprite* sprite; @property (readonly) int weight; @property (nonatomic,retain) id delegate; - (id)init; - (BOOL)tick; - (void)collideWithCart; - (void)collideWithFloor; @end ef='/cartcollect/'>cartcollect
An iOS game where you catch items in a cart
summary refs log blame commit diff stats