diff options
Diffstat (limited to 'Classes/GameModeManager.h')
| -rw-r--r-- | Classes/GameModeManager.h | 20 |
1 files changed, 20 insertions, 0 deletions
| diff --git a/Classes/GameModeManager.h b/Classes/GameModeManager.h new file mode 100644 index 0000000..fdaae60 --- /dev/null +++ b/Classes/GameModeManager.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | // | ||
| 2 | // GameModeManager.h | ||
| 3 | // Cartographic | ||
| 4 | // | ||
| 5 | // Created by Starla Insigna on 11/29/11. | ||
| 6 | // Copyright (c) 2011 Four Island. All rights reserved. | ||
| 7 | // | ||
| 8 | |||
| 9 | #import <Foundation/Foundation.h> | ||
| 10 | |||
| 11 | @interface GameModeManager : NSObject { | ||
| 12 | NSArray* gameModes; | ||
| 13 | int stars; | ||
| 14 | } | ||
| 15 | |||
| 16 | @property (readonly) NSArray* gameModes; | ||
| 17 | @property (assign) int stars; | ||
| 18 | + (GameModeManager*)sharedInstance; | ||
| 19 | |||
| 20 | @end | ||
