cocoaTouch/VoicesViewController.h
changeset 3340 96dd168b080b
parent 3339 d558bc5a73c5
child 3352 ac5d14a35482
--- a/cocoaTouch/VoicesViewController.h	Tue Apr 13 14:39:05 2010 +0000
+++ b/cocoaTouch/VoicesViewController.h	Tue Apr 13 22:45:46 2010 +0000
@@ -11,17 +11,16 @@
 
 
 @interface VoicesViewController : UITableViewController {
-    NSDictionary *teamDictionary;
+    NSMutableDictionary *teamDictionary;
     
     NSArray *voiceArray;
     NSIndexPath *lastIndexPath;
 
-    Mix_Music *musicBeingPlayed;
+    Mix_Chunk *voiceBeingPlayed;
 }
 
-@property (nonatomic,retain) NSDictionary *teamDictionary;
+@property (nonatomic,retain) NSMutableDictionary *teamDictionary;
 @property (nonatomic,retain) NSArray *voiceArray;
 @property (nonatomic,retain) NSIndexPath *lastIndexPath;
-@property (nonatomic,retain) Mix_Music *musicBeingPlayed;
 
 @end