// // OneUp.m // Cart Collect // // Created by iD Student Account on 7/19/11. // Copyright 2011 __MyCompanyName__. All rights reserved. // #import "OneUp.h" @implementation OneUp - (id)init { self = [super init]; if (nil != self) { sprite = [CCSprite spriteWithFile:@"oneup.png"]; weight = 10; } return self; } @end