author | unc0rr |
Thu, 06 May 2010 18:01:04 +0000 | |
changeset 3437 | 858105ae769c |
parent 3353 | a767dd3786b5 |
permissions | -rw-r--r-- |
3339 | 1 |
// |
3352 | 2 |
// VoicesViewController.h |
3339 | 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 { |
|
3340 | 13 |
NSMutableDictionary *teamDictionary; |
3339 | 14 |
|
15 |
NSArray *voiceArray; |
|
16 |
NSIndexPath *lastIndexPath; |
|
17 |
||
3353
a767dd3786b5
OpenAL makes a comeback! (might require some cleanup)
koda
parents:
3352
diff
changeset
|
18 |
int voiceBeingPlayed; |
3339 | 19 |
} |
20 |
||
3340 | 21 |
@property (nonatomic,retain) NSMutableDictionary *teamDictionary; |
3339 | 22 |
@property (nonatomic,retain) NSArray *voiceArray; |
23 |
@property (nonatomic,retain) NSIndexPath *lastIndexPath; |
|
24 |
||
25 |
@end |