summary refs log tree commit diff stats
path: root/Classes/OneUp.m
blob: e09935c96dd9d10a08ff3273b0ede2b3cc47a5c8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
//  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