equal
deleted
inserted
replaced
|
1 // |
|
2 // HogHatViewController.h |
|
3 // HedgewarsMobile |
|
4 // |
|
5 // Created by Vittorio on 02/04/10. |
|
6 // Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 // |
|
8 |
|
9 #import <UIKit/UIKit.h> |
|
10 #import "SDL_mixer.h" |
|
11 |
|
12 |
|
13 @interface VoicesViewController : UITableViewController { |
|
14 NSDictionary *teamDictionary; |
|
15 |
|
16 NSArray *voiceArray; |
|
17 NSIndexPath *lastIndexPath; |
|
18 |
|
19 Mix_Music *musicBeingPlayed; |
|
20 } |
|
21 |
|
22 @property (nonatomic,retain) NSDictionary *teamDictionary; |
|
23 @property (nonatomic,retain) NSArray *voiceArray; |
|
24 @property (nonatomic,retain) NSIndexPath *lastIndexPath; |
|
25 @property (nonatomic,retain) Mix_Music *musicBeingPlayed; |
|
26 |
|
27 @end |