cocoaTouch/otherSrc/HogButtonView.h
author koda
Sat, 05 Jun 2010 14:07:58 +0000
changeset 3495 a6b4f351d400
parent 3364 e5403e2bf02c
permissions -rw-r--r--
now engine can be optionally built as library, there's an example wrapper of how to use it building server is now disabled by default, saves users some headaches
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     1
//
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     2
//  HogButtonView.h
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     3
//  HedgewarsMobile
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     4
//
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     5
//  Created by Vittorio on 20/04/10.
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     7
//
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     8
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
     9
#import <UIKit/UIKit.h>
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    10
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    11
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    12
@interface HogButtonView : UIButton {
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    13
    NSInteger numberOfHogs;
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    14
    UIImage *singleHog;
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    15
    NSMutableDictionary *ownerDictionary;
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    16
}
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    17
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    18
@property (nonatomic,retain) UIImage *singleHog;
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    19
@property (nonatomic) NSInteger numberOfHogs;
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    20
@property (nonatomic,retain) NSMutableDictionary *ownerDictionary;
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    21
3364
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    22
-(void) drawManyHogs:(NSInteger) hogs;
e5403e2bf02c no more hardcoded teams, team selection is real \o/
koda
parents: 3361
diff changeset
    23
-(void) addOne;
3361
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    24
cfc6cd502f85 buttons for number of hogs in game config
koda
parents:
diff changeset
    25
@end