diff options
author | Starla Insigna <starla4444@gmail.com> | 2011-08-09 21:36:09 -0400 |
---|---|---|
committer | Starla Insigna <starla4444@gmail.com> | 2011-08-09 21:36:09 -0400 |
commit | 002dc99a071a4a8f7d2afc15d1fdf2ae0312faed (patch) | |
tree | 82808d85a131ed0f970b374828a3e80ee1fb8d35 /Classes/ValuableObject.h | |
parent | 1ed37fda409479769c8d110aa22d5dadc9d2cb85 (diff) | |
download | cartcollect-002dc99a071a4a8f7d2afc15d1fdf2ae0312faed.tar.gz cartcollect-002dc99a071a4a8f7d2afc15d1fdf2ae0312faed.tar.bz2 cartcollect-002dc99a071a4a8f7d2afc15d1fdf2ae0312faed.zip |
Abstracted a lot of GameLayer's functionality out
In order to prepare for tutorial mode (and eventually, the other game modes), a lot of GameLayer's functionality (reading the accelerometer, moving the cart, moving falling objects, reacting to collisions…) has been abstracted out to FallingObject and subclasses of FallingObject, as well as a new Cart class, and GameMode, a new superclass of GameLayer. The only things that were not abstracted out that probably will be in the future are the pause functionality and the tutorial bubble functionality (which will in fact be moved to the tutorial mode class). A lot of work was also done to cut down on compiler warnings and a lot of #imports were moved from header files to implementation files because I realized THAT'S HOW YOU'RE SUPPOSED TO DO IT. Refs #193
Diffstat (limited to 'Classes/ValuableObject.h')
-rw-r--r--[-rwxr-xr-x] | Classes/ValuableObject.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Classes/ValuableObject.h b/Classes/ValuableObject.h index ccefbbd..7b484d9 100755..100644 --- a/Classes/ValuableObject.h +++ b/Classes/ValuableObject.h | |||
@@ -2,13 +2,13 @@ | |||
2 | // ValuableObject.h | 2 | // ValuableObject.h |
3 | // Cart Collect | 3 | // Cart Collect |
4 | // | 4 | // |
5 | // Created by iD Student Account on 7/20/11. | 5 | // Created by Starla Insigna on 8/9/11. |
6 | // Copyright 2011 __MyCompanyName__. All rights reserved. | 6 | // Copyright 2011 Four Island. All rights reserved. |
7 | // | 7 | // |
8 | 8 | ||
9 | #import <Foundation/Foundation.h> | 9 | #import "FallingObject.h" |
10 | 10 | ||
11 | @protocol ValuableObject | 11 | @interface ValuableObject : FallingObject |
12 | 12 | ||
13 | - (int)pointValue; | 13 | - (int)pointValue; |
14 | 14 | ||