blob: a1ac56e4d5cf5daca812be2881e7c2f690718bf8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// GameObject.h
// Cart Collect
//
// Created by iD Student Account on 7/19/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "cocos2d.h"
@interface FallingObject : NSObject {
CCSprite* sprite;
int weight;
}
@property (readonly) CCSprite* sprite;
@property (readonly) int weight;
- (id)init;
@end
|