project_files/HedgewarsMobile/Classes/VoicesViewController.h
author koda
Thu, 24 Jun 2010 01:08:25 +0200
changeset 3548 4d220ee7c75f
parent 3547 02875b1145b7
child 3667 9359a70df013
permissions -rw-r--r--
server somewhat simplified and correct sporadic crasher workaround for not-rotating curl effect display memory warning only once

//
//  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