author | koda |
Mon, 23 Aug 2010 00:46:06 +0200 | |
changeset 3753 | bb5a0252fb56 |
parent 3703 | 12d17c6e8855 |
child 3829 | 81db3c85784b |
permissions | -rw-r--r-- |
3547 | 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> |
|
3667 | 10 |
#import "SDL_mixer.h" |
3547 | 11 |
|
12 |
@interface VoicesViewController : UITableViewController { |
|
13 |
NSMutableDictionary *teamDictionary; |
|
3703
12d17c6e8855
halfway-through finishing the frontend with new graphics by Tiy + initial 'About' page set up
koda
parents:
3667
diff
changeset
|
14 |
|
3547 | 15 |
NSArray *voiceArray; |
16 |
NSIndexPath *lastIndexPath; |
|
17 |
||
3667 | 18 |
Mix_Chunk *voiceBeingPlayed; |
19 |
int lastChannel; |
|
3547 | 20 |
} |
21 |
||
22 |
@property (nonatomic,retain) NSMutableDictionary *teamDictionary; |
|
23 |
@property (nonatomic,retain) NSArray *voiceArray; |
|
24 |
@property (nonatomic,retain) NSIndexPath *lastIndexPath; |
|
25 |
||
26 |
@end |