//
//  Cherry.m
//  Cart Collect
//
//  Created by iD Student Account on 7/19/11.
//  Copyright 2011 __MyCompanyName__. All rights reserved.
//

#import "Cherry.h"


@implementation Cherry

- (id)init
{
	self = [super init];
	
	if (nil != self)
	{
		sprite = [CCSprite spriteWithFile:@"cherry.png"];
        weight = 5;
	}
	
	return self;
}

- (int)pointValue
{
	return 10;
}

@end