project_files/HedgewarsMobile/Classes/SquareButtonView.h
changeset 3547 02875b1145b7
parent 3546 ccf4854df294
child 3829 81db3c85784b
equal deleted inserted replaced
3546:ccf4854df294 3547:02875b1145b7
       
     1 //
       
     2 //  HogButtonView.h
       
     3 //  HedgewarsMobile
       
     4 //
       
     5 //  Created by Vittorio on 20/04/10.
       
     6 //  Copyright 2010 __MyCompanyName__. All rights reserved.
       
     7 //
       
     8 
       
     9 #import <UIKit/UIKit.h>
       
    10 
       
    11 
       
    12 @interface SquareButtonView : UIButton {
       
    13     NSInteger colorIndex;
       
    14     NSUInteger selectedColor;
       
    15     NSArray *colorArray;
       
    16     NSMutableDictionary *ownerDictionary;
       
    17 }
       
    18 
       
    19 @property (nonatomic,retain) NSArray *colorArray;
       
    20 @property (nonatomic) NSUInteger selectedColor;
       
    21 @property (nonatomic,retain) NSMutableDictionary *ownerDictionary;
       
    22 
       
    23 -(void) nextColor;
       
    24 -(void) selectColor:(NSUInteger) color;
       
    25 
       
    26 @end