blob: bae27166392ad9cb4825249f74d56632dfc9948c (
plain) (
tree)
|
|
//
// Bottle.m
// Cart Collect
//
// Created by iD Student Account on 7/19/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "Bottle.h"
@implementation Bottle
- (id)init
{
self = [super init];
if (nil != self)
{
sprite = [CCSprite spriteWithFile:@"bottle.png"];
weight = 6;
}
return self;
}
- (int)pointValue
{
return 25;
}
@end
|