summary refs log tree commit diff stats
path: root/libs/cocos2d/CCSpriteFrame.m
diff options
context:
space:
mode:
Diffstat (limited to 'libs/cocos2d/CCSpriteFrame.m')
0 files changed, 0 insertions, 0 deletions
='#n8'>8 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37








                                                          

                             















                                                               








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

#import "Rock.h"
#import "GameMode.h"
#import "SimpleAudioEngine.h"

@implementation Rock

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

- (void)collideWithCart
{
    GameMode* gameLayer = ((GameMode*) sprite.parent);
    [gameLayer setLives:gameLayer.lives-1];
    
    [[SimpleAudioEngine sharedEngine] playEffect:[[NSBundle mainBundle] pathForResource:@"Damage1" ofType:@"wav"]];
}


@end