From 9cd57b731ab1c666d4a1cb725538fdc137763d12 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sat, 30 Jul 2011 11:19:14 -0400 Subject: Initial commit (version 0.2.1) --- Classes/FallingObject.h | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100755 Classes/FallingObject.h (limited to 'Classes/FallingObject.h') diff --git a/Classes/FallingObject.h b/Classes/FallingObject.h new file mode 100755 index 0000000..a1ac56e --- /dev/null +++ b/Classes/FallingObject.h @@ -0,0 +1,21 @@ +// +// GameObject.h +// Cart Collect +// +// Created by iD Student Account on 7/19/11. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#import +#import "cocos2d.h" + +@interface FallingObject : NSObject { + CCSprite* sprite; + int weight; +} + +@property (readonly) CCSprite* sprite; +@property (readonly) int weight; +- (id)init; + +@end -- cgit 1.4.1