cocoaTouch/otherSrc/SquareButtonView.h
changeset 3361 cfc6cd502f85
child 3364 e5403e2bf02c
equal deleted inserted replaced
3360:717b4e46e855 3361:cfc6cd502f85
       
     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 }
       
    17 
       
    18 @property (nonatomic,retain) NSArray *colorArray;
       
    19 
       
    20 -(void) nextColor;
       
    21 
       
    22 @end