equal
deleted
inserted
replaced
|
1 // |
|
2 // VoicesViewController.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 |
|
11 |
|
12 @interface VoicesViewController : UITableViewController { |
|
13 NSMutableDictionary *teamDictionary; |
|
14 |
|
15 NSArray *voiceArray; |
|
16 NSIndexPath *lastIndexPath; |
|
17 |
|
18 int voiceBeingPlayed; |
|
19 } |
|
20 |
|
21 @property (nonatomic,retain) NSMutableDictionary *teamDictionary; |
|
22 @property (nonatomic,retain) NSArray *voiceArray; |
|
23 @property (nonatomic,retain) NSIndexPath *lastIndexPath; |
|
24 |
|
25 @end |