project_files/HedgewarsMobile/Classes/VoicesViewController.h
author koda
Sun, 18 Jul 2010 03:55:56 +0200
changeset 3651 7058ca178f3b
parent 3547 02875b1145b7
child 3667 9359a70df013
permissions -rw-r--r--
switching hogs now works

//
//  VoicesViewController.h
//  HedgewarsMobile
//
//  Created by Vittorio on 02/04/10.
//  Copyright 2010 __MyCompanyName__. All rights reserved.
//

#import <UIKit/UIKit.h>


@interface VoicesViewController : UITableViewController {
    NSMutableDictionary *teamDictionary;
    
    NSArray *voiceArray;
    NSIndexPath *lastIndexPath;

    int voiceBeingPlayed;
}

@property (nonatomic,retain) NSMutableDictionary *teamDictionary;
@property (nonatomic,retain) NSArray *voiceArray;
@property (nonatomic,retain) NSIndexPath *lastIndexPath;

@end