author | koda |
Thu, 18 Mar 2010 02:18:50 +0000 | |
changeset 3015 | 20a9c8160e82 |
parent 3006 | da6023c2745b |
child 3025 | 01682ec58eb0 |
permissions | -rw-r--r-- |
3006 | 1 |
// |
2 |
// overlayViewController.h |
|
3 |
// HedgewarsMobile |
|
4 |
// |
|
5 |
// Created by Vittorio on 16/03/10. |
|
6 |
// Copyright 2010 __MyCompanyName__. All rights reserved. |
|
7 |
// |
|
8 |
||
9 |
#import <UIKit/UIKit.h> |
|
10 |
||
11 |
||
12 |
@interface overlayViewController : UIViewController { |
|
3015 | 13 |
NSTimer *dimTimer; |
14 |
} |
|
3006 | 15 |
|
3015 | 16 |
@property (nonatomic,retain) NSTimer *dimTimer; |
3006 | 17 |
|
18 |
-(IBAction) buttonReleased:(id) sender; |
|
19 |
-(IBAction) buttonPressed:(id) sender; |
|
20 |
||
21 |
-(void) dimOverlay; |
|
22 |
||
23 |
@end |