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;
|
3025
|
14 |
CGFloat initialDistanceForPinching;
|
|
15 |
CGPoint gestureStartPoint;
|
3015
|
16 |
}
|
3006
|
17 |
|
3015
|
18 |
@property (nonatomic,retain) NSTimer *dimTimer;
|
3006
|
19 |
|
3025
|
20 |
|
|
21 |
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event;
|
|
22 |
-(void) touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event;
|
|
23 |
-(void) touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event;
|
|
24 |
|
3006
|
25 |
-(IBAction) buttonReleased:(id) sender;
|
|
26 |
-(IBAction) buttonPressed:(id) sender;
|
|
27 |
|
|
28 |
-(void) dimOverlay;
|
3027
|
29 |
-(void) showMenuAfterwards;
|
3006
|
30 |
|
|
31 |
@end
|