summary refs log tree commit diff stats
path: root/Classes/OneUp.m
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/OneUp.m')
-rwxr-xr-xClasses/OneUp.m27
1 files changed, 27 insertions, 0 deletions
diff --git a/Classes/OneUp.m b/Classes/OneUp.m new file mode 100755 index 0000000..e09935c --- /dev/null +++ b/Classes/OneUp.m
@@ -0,0 +1,27 @@
1//
2// OneUp.m
3// Cart Collect
4//
5// Created by iD Student Account on 7/19/11.
6// Copyright 2011 __MyCompanyName__. All rights reserved.
7//
8
9#import "OneUp.h"
10
11
12@implementation OneUp
13
14- (id)init
15{
16 self = [super init];
17
18 if (nil != self)
19 {
20 sprite = [CCSprite spriteWithFile:@"oneup.png"];
21 weight = 10;
22 }
23
24 return self;
25}
26
27@end