blob: 9e0d4f0712ae4c7546f253339b3b1e021c278291 (
plain) (
tree)
|
|
//
// OneUp.m
// Cart Collect
//
// Created by iD Student Account on 7/19/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import "OneUp.h"
#import "GameMode.h"
#import "SimpleAudioEngine.h"
@implementation OneUp
- (id)init
{
self = [super init];
if (nil != self)
{
sprite = [CCSprite spriteWithFile:@"oneup.png"];
weight = 10;
}
return self;
}
- (void)collideWithCart
{
GameMode* gameLayer = ((GameMode*) sprite.parent);
[gameLayer setLives:gameLayer.lives+1];
[[SimpleAudioEngine sharedEngine] playEffect:[[NSBundle mainBundle] pathForResource:@"1up" ofType:@"wav"]];
}
@end
|